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.
33 lines
685 B
33 lines
685 B
10 years ago
|
'use strict';
|
||
9 years ago
|
require('../common');
|
||
12 years ago
|
var assert = require('assert');
|
||
|
|
||
|
var spawn = require('child_process').spawn;
|
||
|
var child = spawn(process.execPath, [], {
|
||
9 years ago
|
env: Object.assign(process.env, {
|
||
12 years ago
|
NODE_DEBUG: process.argv[2]
|
||
9 years ago
|
})
|
||
12 years ago
|
});
|
||
|
var wanted = child.pid + '\n';
|
||
|
var found = '';
|
||
|
|
||
|
child.stdout.setEncoding('utf8');
|
||
|
child.stdout.on('data', function(c) {
|
||
|
found += c;
|
||
|
});
|
||
|
|
||
|
child.stderr.setEncoding('utf8');
|
||
|
child.stderr.on('data', function(c) {
|
||
|
console.error('> ' + c.trim().split(/\n/).join('\n> '));
|
||
|
});
|
||
|
|
||
|
child.on('close', function(c) {
|
||
|
assert(!c);
|
||
|
assert.equal(found, wanted);
|
||
|
console.log('ok');
|
||
|
});
|
||
|
|
||
|
setTimeout(function() {
|
||
|
child.stdin.end('console.log(process.pid)');
|
||
|
});
|