mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
584 B
32 lines
584 B
common = require("../common");
|
|
assert = common.assert
|
|
var i;
|
|
|
|
var N = 30;
|
|
var done = [];
|
|
|
|
function get_printer(timeout) {
|
|
return function () {
|
|
console.log("Running from setTimeout " + timeout);
|
|
done.push(timeout);
|
|
};
|
|
}
|
|
|
|
process.nextTick(function () {
|
|
console.log("Running from nextTick");
|
|
done.push('nextTick');
|
|
})
|
|
|
|
for (i = 0; i < N; i += 1) {
|
|
setTimeout(get_printer(i), i);
|
|
}
|
|
|
|
console.log("Running from main.");
|
|
|
|
|
|
process.addListener('exit', function () {
|
|
assert.equal('nextTick', done[0]);
|
|
for (i = 0; i < N; i += 1) {
|
|
assert.equal(i, done[i+1]);
|
|
}
|
|
});
|
|
|