mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
445 B
27 lines
445 B
8 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const domain = require('domain');
|
||
|
|
||
|
function test() {
|
||
|
const d = domain.create();
|
||
|
const d2 = domain.create();
|
||
|
|
||
|
d.on('error', function errorHandler() {
|
||
|
});
|
||
|
|
||
|
d.run(function() {
|
||
|
d2.run(function() {
|
||
|
setImmediate(function() {
|
||
|
throw new Error('boom!');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (process.argv[2] === 'child') {
|
||
|
test();
|
||
|
} else {
|
||
|
common.childShouldThrowAndAbort();
|
||
|
}
|