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
461 B

14 years ago
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);
});