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

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
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) {
|
|
common.skip('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');
|