test: enable test-debug-brk-no-arg

Fix issues with disabled test-debug-brk-no-arg and re-enable the test.

PR-URL: https://github.com/nodejs/node/pull/7143
Reviewed-By: Fedor Indutny <fedor@indutny.com>
pull/7186/head
Rich Trott 2016-06-03 16:08:30 -07:00
parent a78c2335b1
commit 101bda1b40
2 changed files with 13 additions and 15 deletions

View File

@ -1,15 +0,0 @@
'use strict';
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');
});

View File

@ -0,0 +1,13 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const spawn = require('child_process').spawn;
const child = spawn(process.execPath, ['--debug-brk=' + common.PORT, '-i']);
child.stderr.once('data', common.mustCall(function() {
child.stdin.end('.exit');
}));
child.on('exit', common.mustCall(function(c) {
assert.strictEqual(c, 0);
}));