summaryrefslogtreecommitdiff
path: root/test/simple/test-eio-race4.js
blob: 9ab0c0d3ae917f6b4341c5e0c31fe80d6dc51e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
      console.log("finish " + j);
    } else {
      throw new Error("this shouldn't be called");
    }
  });
}

process.addListener("exit", function () {
  assert.equal(N, j);
});