/third_party/node/test/parallel/ |
D | test-child-process-spawn-typeerror.js | 25 const { spawn, fork, execFile } = require('child_process'); 127 execFile(cmd); 128 execFile(cmd, a); 129 execFile(cmd, a, o); 130 execFile(cmd, a, o, c); 131 execFile(cmd, a, c); 132 execFile(cmd, o); 133 execFile(cmd, o, c); 134 execFile(cmd, c); 137 execFile(cmd, u, o, c); [all …]
|
D | test-child-process-execfile-maxbuf.js | 4 const { execFile } = require('child_process'); 16 execFile( 25 execFile( 38 execFile( 50 execFile('echo', ['hello world'], { maxBuffer: 5 }, checkFactory('stdout')); 56 execFile( 64 execFile( 73 const child = execFile( 84 const child = execFile(
|
D | test-child-process-execfile.js | 5 const { execFile, execFileSync } = require('child_process'); 16 execFile( 41 const child = execFile(process.execPath, callback); 49 execFile(process.execPath, [fixture, 0], execOpts, common.mustSucceed()); 63 execFile(process.execPath, [echoFixture, 0], { signal }, check); 80 execFile(process.execPath, [echoFixture, 0], { signal }, check); 89 execFile(process.execPath, [echoFixture, 0], { signal: 'hello' }, callback); 101 execFile(process.execPath, [fixture, 0], { signal }, callback); 118 execFile(file, args, options, common.mustCall((_, stdout) => {
|
D | test-child-process-reject-null-bytes.js | 9 execFile, 46 throws(() => execFile('BBB\0XXX', mustNotCall()), { 78 throws(() => execFile(process.execPath, [__filename, 'AAA', 'BBB\0XXX', 'CCC'], mustNotCall()), { 110 throws(() => execFile(process.execPath, { cwd: 'BBB\0XXX' }, mustNotCall()), { 147 throws(() => execFile(process.execPath, { argv0: 'BBB\0XXX' }, mustNotCall()), { 184 throws(() => execFile(process.execPath, { shell: 'BBB\0XXX' }, mustNotCall()), { 224 throws(() => execFile(process.execPath, { env: { 'AAA': 'BBB\0XXX' } }, mustNotCall()), { 229 throws(() => execFile(process.execPath, { env: { 'BBB\0XXX': 'AAA' } }, mustNotCall()), {
|
D | test-child-process-promisified.js | 8 const execFile = promisify(child_process.execFile); constant 20 const promise = execFile(process.execPath, ['-p', '42']); 38 const promise = execFile('doesntexist', ['-p', '42']); 57 execFile(process.execPath, ['-e', failingCodeWithStdoutErr])
|
D | test-os-userinfo-handles-getter-errors.js | 7 const execFile = require('child_process').execFile; constant 16 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
D | test-vm-api-handles-getter-errors.js | 8 const execFile = require('child_process').execFile; constant 32 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
D | test-inspector-invalid-args.js | 8 const execFile = require('child_process').execFile; constant 15 execFile(
|
D | test-sync-io-option.js | 5 const execFile = promisify(require('child_process').execFile); constant 30 await execFile(process.execPath, [...execArgv, __filename, variant]);
|
D | test-child-process-execFile-promisified-abortController.js | 6 const execFile = require('child_process').execFile; constant 10 const promisified = promisify(execFile);
|
D | test-trace-exit.js | 5 const execFile = promisify(require('child_process').execFile); constant 44 await execFile(process.execPath, [...execArgv, __filename, variant]);
|
D | test-process-uncaught-exception-monitor.js | 5 const { execFile } = require('child_process'); 11 execFile( 28 execFile(
|
D | test-common.js | 28 const { execFile } = require('child_process'); 35 execFile(process.execPath, [p], common.mustCall((err, stdout, stderr) => { 44 execFile(process.execPath, [p], { 105 execFile(process.execPath, [file], common.mustCall((err, stdout, stderr) => {
|
D | test-intl.js | 25 const { execFile } = require('child_process'); 146 execFile( 156 execFile(
|
D | test-tls-alert.js | 31 const { execFile } = require('child_process'); 47 execFile(common.opensslCli, args, common.mustCall((err, _, stderr) => {
|
D | test-tls-ecdh-auto.js | 15 const { execFile } = require('child_process'); 39 execFile(common.opensslCli, args, common.mustSucceed((stdout) => {
|
/third_party/node/test/sequential/ |
D | test-deprecation-flags.js | 26 const execFile = require('child_process').execFile; constant 43 execFile(node, normal, function(er, stdout, stderr) { 51 execFile(node, noDep, function(er, stdout, stderr) { 59 execFile(node, traceDep, function(er, stdout, stderr) { 70 execFile(node, [depUserlandFunction], function(er, stdout, stderr) { 78 execFile(node, [depUserlandClass], function(er, stdout, stderr) { 84 execFile(node, [depUserlandSubClass], function(er, stdout, stderr) {
|
D | test-process-warnings.js | 6 const execFile = require('child_process').execFile; constant 16 execFile(node, normal, function(er, stdout, stderr) { 23 execFile(node, noWarn, function(er, stdout, stderr) { 30 execFile(node, traceWarn, function(er, stdout, stderr) {
|
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-find-python.js | 8 const execFile = require('child_process').execFile constant 17 var proc = execFile(found, ['-V'], function (err, stdout, stderr) { 57 f.execFile = function (program, args, opts, cb) { function 58 f.execFile = function (program, args, opts, cb) { function 79 f.execFile = function (program, args, opts, cb) { function 98 f.execFile = function (program, args, opts, cb) { function 120 f.execFile = function (program, args, opts, cb) { function 139 f.execFile = function (program, args, opts, cb) { function 172 f.execFile = function (program, args, opts, cb) { function 197 f.execFile = function (program, args, opts, cb) { function
|
D | test-addon.js | 12 const execFile = childProcess.execFile constant 45 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) { 110 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) { 140 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/ |
D | test_regressions.js | 37 function execFile(jsFile) { function 73 execFile(file); 84 execFile(file); 100 execFile(file); 111 execFile(file);
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | util.js | 4 const execFile = require('child_process').execFile constant 27 const child = execFile(reg, regArgs, { encoding: 'utf8' },
|
/third_party/node/tools/ |
D | build-addons.mjs | 12 const execFile = util.promisify(child_process.execFile); constant 31 await execFile(process.execPath, [nodeGyp, 'rebuild', `--directory=${dir}`],
|
/third_party/node/deps/v8/tools/system-analyzer/ |
D | lws-middleware.js | 6 const execFile = util.promisify(require('child_process').execFile); constant 12 const {stdout} = await execFile(cmd, params, options);
|
/third_party/node/test/pummel/ |
D | test-hash-seed.js | 16 const { execFile } = require('child_process'); 17 const execFilePromise = promisify(execFile);
|