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.
17 lines
371 B
17 lines
371 B
8 years ago
|
'use strict';
|
||
|
require('../common');
|
||
8 years ago
|
|
||
8 years ago
|
const spawn = require('child_process').spawn;
|
||
|
|
||
|
const child = spawn(process.execPath,
|
||
|
[ '--inspect', 'no-such-script.js' ],
|
||
|
{ 'stdio': 'inherit' });
|
||
|
|
||
|
function signalHandler(value) {
|
||
|
child.kill();
|
||
|
process.exit(1);
|
||
|
}
|
||
|
|
||
|
process.on('SIGINT', signalHandler);
|
||
|
process.on('SIGTERM', signalHandler);
|