2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2012-07-17 17:17:34 +02:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
|
|
|
|
|
|
|
if (process.argv[2] !== 'child') {
|
|
|
|
var spawn = require('child_process').spawn;
|
|
|
|
var child = spawn(process.execPath, [__filename, 'child'], {
|
|
|
|
stdio: 'pipe'//'inherit'
|
|
|
|
});
|
|
|
|
var timer = setTimeout(function() {
|
|
|
|
throw new Error('child is hung');
|
2015-04-29 02:55:55 +02:00
|
|
|
}, common.platformTimeout(3000));
|
2012-07-17 17:17:34 +02:00
|
|
|
child.on('exit', function(code) {
|
|
|
|
console.error('ok');
|
|
|
|
assert(!code);
|
|
|
|
clearTimeout(timer);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
|
|
|
|
var domain = require('domain');
|
|
|
|
var d = domain.create();
|
|
|
|
process.maxTickDepth = 10;
|
|
|
|
|
|
|
|
// in the error handler, we trigger several MakeCallback events
|
|
|
|
d.on('error', function(e) {
|
2015-05-19 13:00:06 +02:00
|
|
|
console.log('a');
|
|
|
|
console.log('b');
|
|
|
|
console.log('c');
|
|
|
|
console.log('d');
|
|
|
|
console.log('e');
|
2012-07-17 17:17:34 +02:00
|
|
|
f();
|
|
|
|
});
|
|
|
|
|
|
|
|
function f() {
|
|
|
|
process.nextTick(function() {
|
|
|
|
d.run(function() {
|
2015-05-19 13:00:06 +02:00
|
|
|
throw new Error('x');
|
2012-07-17 17:17:34 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
f();
|
2015-05-19 13:00:06 +02:00
|
|
|
setTimeout(function() {
|
2012-07-17 17:17:34 +02:00
|
|
|
console.error('broke in!');
|
|
|
|
//process.stdout.close();
|
|
|
|
//process.stderr.close();
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
}
|