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.
 
 
 
 
 
 

21 lines
460 B

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.addListener('exit', function() {
assert.equal(N, j);
});