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.
15 lines
359 B
15 lines
359 B
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var spawn = require('child_process').spawn;
|
||
|
|
||
|
var child = spawn(process.execPath, ['--debug-brk=' + common.PORT]);
|
||
|
child.stderr.once('data', function(c) {
|
||
|
console.error('%j', c.toString());
|
||
|
child.stdin.end();
|
||
|
});
|
||
|
|
||
|
child.on('exit', function(c) {
|
||
|
assert(c === 0);
|
||
|
console.log('ok');
|
||
|
});
|