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.
32 lines
686 B
32 lines
686 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (process.argv[2] === 'child')
|
|
process.stdout.end('foo');
|
|
else
|
|
parent();
|
|
|
|
function parent() {
|
|
var spawn = require('child_process').spawn;
|
|
var child = spawn(process.execPath, [__filename, 'child']);
|
|
var out = '';
|
|
var err = '';
|
|
|
|
child.stdout.setEncoding('utf8');
|
|
child.stderr.setEncoding('utf8');
|
|
|
|
child.stdout.on('data', function(c) {
|
|
out += c;
|
|
});
|
|
child.stderr.on('data', function(c) {
|
|
err += c;
|
|
});
|
|
|
|
child.on('close', function(code, signal) {
|
|
assert(code);
|
|
assert.equal(out, 'foo');
|
|
assert(/process\.stdout cannot be closed/.test(err));
|
|
console.log('ok');
|
|
});
|
|
}
|
|
|