mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
465 B
22 lines
465 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var fs = require('fs');
|
|
var N = 100;
|
|
var j = 0;
|
|
|
|
for (var i = 0; i < N; i++) {
|
|
// these files don't exist
|
|
fs.stat('does-not-exist-' + i, function(err) {
|
|
if (err) {
|
|
j++; // only makes it to about 17
|
|
console.log('finish ' + j);
|
|
} else {
|
|
throw new Error('this shouldn\'t be called');
|
|
}
|
|
});
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(N, j);
|
|
});
|
|
|