mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
82b44f465b
V8 9.1 changed the way it aborts on uncaught exceptions on Windows.
It now uses the code 0x80000003 (exception breakpoint) instead of
0xC0000005 (access violation).
Refs: 26d85acee2
PR-URL: https://github.com/nodejs/node/pull/38273
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Mary Marchini <oss@mmarchini.me>
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
const vm = require('vm');
|
|
const node = process.execPath;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
throw new Error('child error');
|
|
} else if (process.argv[2] === 'vm') {
|
|
// Refs: https://github.com/nodejs/node/issues/13258
|
|
// This *should* still crash.
|
|
new vm.Script('[', {});
|
|
} else {
|
|
run('', 'child', null);
|
|
run('--abort-on-uncaught-exception', 'child',
|
|
['SIGABRT', 'SIGTRAP', 'SIGILL']);
|
|
run('--abort-on-uncaught-exception', 'vm', ['SIGABRT', 'SIGTRAP', 'SIGILL']);
|
|
}
|
|
|
|
function run(flags, argv2, signals) {
|
|
const args = [__filename, argv2];
|
|
if (flags)
|
|
args.unshift(flags);
|
|
|
|
const child = spawn(node, args);
|
|
child.on('exit', common.mustCall(function(code, sig) {
|
|
if (common.isWindows) {
|
|
if (signals)
|
|
assert.strictEqual(code, 0x80000003);
|
|
else
|
|
assert.strictEqual(code, 1);
|
|
} else if (signals) {
|
|
assert(signals.includes(sig), `Unexpected signal ${sig}`);
|
|
} else {
|
|
assert.strictEqual(sig, null);
|
|
}
|
|
}));
|
|
}
|