blob: f5fb65a8ee3c0ae38d97494d0c1b3e61e721d442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
process.mixin(require("../common"));
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
puts("finish " + j);
} else {
throw new Error("this shouldn't be called");
}
});
}
process.addListener("exit", function () {
assert.equal(N, j);
});
|