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
565 B
32 lines
565 B
15 years ago
|
require('../common');
|
||
|
var sys = require('sys'), i;
|
||
|
|
||
|
var N = 30;
|
||
|
var done = [];
|
||
|
|
||
|
function get_printer(timeout) {
|
||
|
return function () {
|
||
|
sys.puts("Running from setTimeout " + timeout);
|
||
|
done.push(timeout);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
process.nextTick(function () {
|
||
|
sys.puts("Running from nextTick");
|
||
|
done.push('nextTick');
|
||
|
})
|
||
|
|
||
|
for (i = 0; i < N; i += 1) {
|
||
|
setTimeout(get_printer(i), i);
|
||
|
}
|
||
|
|
||
|
sys.puts("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]);
|
||
|
}
|
||
|
});
|