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.

36 lines
832 B

'use strict';
const common = require('../common');
const assert = require('assert');
const spawn = require('child_process').spawn;
if (process.argv[2] === 'parent')
parent();
else
grandparent();
function grandparent() {
const child = spawn(process.execPath, [__filename, 'parent']);
child.stderr.pipe(process.stderr);
let output = '';
const input = 'asdfasdf';
child.stdout.on('data', function(chunk) {
output += chunk;
});
child.stdout.setEncoding('utf8');
child.stdin.end(input);
child.on('close', function(code, signal) {
assert.strictEqual(code, 0);
assert.strictEqual(signal, null);
// cat on windows adds a \r\n at the end.
assert.strictEqual(output.trim(), input.trim());
});
}
function parent() {
// should not immediately exit.
common.spawnCat({ stdio: 'inherit' });
}