mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

This is a followup of https://github.com/nodejs/io.js/pull/2109. The tests which didn't make it in #2109, are included in this patch. The skip messages are supposed to follow the format 1..0 # Skipped: [Actual reason why the test is skipped] and the tests should be skipped with the return statement. PR-URL: https://github.com/nodejs/io.js/pull/2290 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
const common = require('../common');
|
|
|
|
if (common.isWindows) {
|
|
console.log('1..0 # Skipped: Win32 doesn\'t have signals, just a kind of ' +
|
|
'emulation, insufficient for this test to apply.');
|
|
return;
|
|
}
|
|
|
|
var ok;
|
|
|
|
if (process.argv[2] !== '--do-test') {
|
|
// We are the master, fork a child so we can verify it exits with correct
|
|
// status.
|
|
process.env.DOTEST = 'y';
|
|
var child = spawn(process.execPath, [__filename, '--do-test']);
|
|
|
|
child.once('exit', function(code, signal) {
|
|
assert.equal(signal, 'SIGINT');
|
|
ok = true;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert(ok);
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
process.on('SIGINT', function() {
|
|
// Remove all handlers and kill ourselves. We should terminate by SIGINT
|
|
// now that we have no handlers.
|
|
process.removeAllListeners('SIGINT');
|
|
process.kill(process.pid, 'SIGINT');
|
|
});
|
|
|
|
// Signal handlers aren't sufficient to keep node alive, so resume stdin
|
|
process.stdin.resume();
|
|
|
|
// Demonstrate that signals are being handled
|
|
process.kill(process.pid, 'SIGINT');
|