node/test/simple/test-eio-race4.js

21 lines
425 B
JavaScript
Raw Normal View History

2010-02-25 14:36:17 +08:00
process.mixin(require("../common"));
var fs = require('fs');
var N = 100;
var j = 0;
for (var i = 0; i < N; i++) {
2010-02-20 08:02:30 +08:00
// 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);
});