summaryrefslogtreecommitdiff
path: root/test/simple/test-eio-race4.js
blob: 3e7b928eedfc32d55012ffb336acd426ff531470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
});