mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
233d1e276a
PR-URL: https://github.com/nodejs/node/pull/15056 Fixes: https://github.com/nodejs/node/issues/14012 Refs: https://github.com/nodejs/node/pull/14013 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
25 lines
720 B
JavaScript
25 lines
720 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
// This test makes sure that an aborted node process
|
|
// exits with code 3 on Windows, and SIGABRT on POSIX.
|
|
// Spawn a child, force an abort, and then check the
|
|
// exit code in the parent.
|
|
|
|
const spawn = require('child_process').spawn;
|
|
if (process.argv[2] === 'child') {
|
|
process.abort();
|
|
} else {
|
|
const child = spawn(process.execPath, [__filename, 'child']);
|
|
child.on('exit', common.mustCall((code, signal) => {
|
|
if (common.isWindows) {
|
|
assert.strictEqual(code, 134);
|
|
assert.strictEqual(signal, null);
|
|
} else {
|
|
assert.strictEqual(code, null);
|
|
assert.strictEqual(signal, 'SIGABRT');
|
|
}
|
|
}));
|
|
}
|