mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
53413598b6
Should call eio_poll() when given a done_poll signal as well. Bug report and test case by Kris Zyp <kriszyp@gmail.com>
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
process.mixin(require("./common"));
|
|
|
|
var N = 100;
|
|
var j = 0;
|
|
|
|
for (var i = 0; i < N; i++) {
|
|
posix.stat("does-not-exist-" + i) // these files don't exist
|
|
.addErrback(function (e) {
|
|
j++; // only makes it to about 17
|
|
puts("finish " + j);
|
|
})
|
|
.addCallback(function () {
|
|
puts("won't be called");
|
|
});
|
|
}
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(N, j);
|
|
});
|