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
640 B
27 lines
640 B
8 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
common.skipIfInspectorDisabled();
|
||
|
|
||
|
const spawn = require('child_process').spawn;
|
||
|
|
||
|
const script = `
|
||
|
const assert = require('assert');
|
||
|
const inspector = process.binding('inspector');
|
||
|
|
||
|
assert(
|
||
|
!!inspector.isEnabled(),
|
||
|
'inspector.isEnabled() should be true when run with --inspect');
|
||
|
|
||
|
process._debugEnd();
|
||
|
|
||
|
assert(
|
||
|
!inspector.isEnabled(),
|
||
|
'inspector.isEnabled() should be false after _debugEnd()');
|
||
|
`;
|
||
|
|
||
|
const args = ['--inspect', '-e', script];
|
||
|
const child = spawn(process.execPath, args, { stdio: 'inherit' });
|
||
|
child.on('exit', (code, signal) => {
|
||
|
process.exit(code || signal);
|
||
|
});
|