0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-signal-handler.js
Felix Geisendörfer 530328f12b CommonJS testing for node.js
Refactored test suite to use the assert module for testing rather than
mjsunit.
2009-12-05 01:05:16 +01:00

35 lines
585 B
JavaScript

process.mixin(require("./common"));
puts("process.pid: " + process.pid);
var first = 0,
second = 0;
process.addListener('SIGUSR1', function () {
puts("Interrupted by SIGUSR1");
first += 1;
});
process.addListener('SIGUSR1', function () {
second += 1;
setTimeout(function () {
puts("End.");
process.exit(0);
}, 5);
});
i = 0;
setInterval(function () {
puts("running process..." + ++i);
if (i == 5) {
process.kill(process.pid, "SIGUSR1");
}
}, 1);
process.addListener("exit", function () {
assert.equal(1, first);
assert.equal(1, second);
});