mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
a1652324cd
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for #9979 (not a real fix). PR-URL: https://github.com/nodejs/node/pull/10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
21 lines
329 B
JavaScript
21 lines
329 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const domain = require('domain');
|
|
|
|
function test() {
|
|
const d = domain.create();
|
|
|
|
d.run(function() {
|
|
setTimeout(function() {
|
|
throw new Error('boom!');
|
|
}, 1);
|
|
});
|
|
}
|
|
|
|
if (process.argv[2] === 'child') {
|
|
test();
|
|
} else {
|
|
common.childShouldThrowAndAbort();
|
|
}
|