Lines Matching refs:child
32 const child = require('child_process');
43 child.exec(`${nodejs} --eval 42`, common.mustSucceed((stdout, stderr) => {
49 child.exec(`${nodejs} --eval "console.error(42)"`,
59 child.exec(`${cmd}42`, common.mustSucceed((stdout, stderr) => {
64 child.exec(`${cmd} '[]'`, common.mustSucceed((stdout, stderr) => {
76 child.exec(`${nodejs} --eval "require('${filename}')"`,
86 child.exec(`${nodejs} --print "os.platform()"`,
93 child.exec(`${nodejs} --eval "require('./test/parallel/test-cli-eval.js')"`,
103 child.exec(`${nodejs} -e`, common.mustCall((err, stdout, stderr) => {
111 child.exec(`${nodejs} -e ""`, common.mustSucceed((stdout, stderr) => {
117 child.exec(`${nodejs} -p "\\-42"`, common.mustSucceed((stdout, stderr) => {
122 child.exec(`${nodejs} --use-strict -p process.execArgv`,
137 child.exec(`${nodejs} -e 'require("child_process").fork("${emptyFile}")'`,
145 child.exec(
164 const proc = child.spawnSync(process.execPath, ['-e', script], options);
177 const proc = child.fork('-e', [script]);
197 child.exec(cmd, common.mustCall(function(err, stdout, stderr) {
206 child.exec(pcmd, common.mustCall(function(err, stdout, stderr) {
216 child.exec(filecmd, common.mustCall(function(err, stdout, stderr) {
228 child.exec(
235 child.exec(
244 child.exec(
253 child.exec(
260 child.exec(
267 child.exec(
276 child.exec(
284 child.exec(
293 child.execFile(process.execPath,