mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
99e0d0d218
PR-URL: https://github.com/nodejs/node/pull/55125 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const os = require('os');
|
|
|
|
if (process.argv[2] === 'child') {
|
|
const { pipeline } = require('stream');
|
|
pipeline(
|
|
process.stdin,
|
|
process.stdout,
|
|
common.mustSucceed()
|
|
);
|
|
} else {
|
|
const cp = require('child_process');
|
|
cp.exec(...common.escapePOSIXShell`echo hello | "${process.execPath}" "${__filename}" child`, common.mustSucceed((stdout) => {
|
|
assert.strictEqual(stdout.split(os.EOL).shift().trim(), 'hello');
|
|
}));
|
|
}
|