Home
last modified time | relevance | path

Searched refs:execFile (Results 1 – 25 of 51) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-child-process-spawn-typeerror.js25 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 …]
Dtest-child-process-execfile-maxbuf.js4 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(
Dtest-child-process-execfile.js6 const execFile = require('child_process').execFile; constant
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);
82 execFile(process.execPath, [echoFixture, 0], { signal }, check);
91 execFile(process.execPath, [echoFixture, 0], { signal: 'hello' }, callback);
103 execFile(process.execPath, [fixture, 0], { signal }, callback);
Dtest-child-process-promisified.js8 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])
Dtest-os-userinfo-handles-getter-errors.js7 const execFile = require('child_process').execFile; constant
16 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
Dtest-vm-api-handles-getter-errors.js8 const execFile = require('child_process').execFile; constant
32 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
Dtest-sync-io-option.js5 const execFile = promisify(require('child_process').execFile); constant
30 await execFile(process.execPath, [...execArgv, __filename, variant]);
Dtest-child-process-execFile-promisified-abortController.js7 const execFile = require('child_process').execFile; constant
11 const promisified = promisify(execFile);
Dtest-trace-exit.js5 const execFile = promisify(require('child_process').execFile); constant
44 await execFile(process.execPath, [...execArgv, __filename, variant]);
Dtest-process-uncaught-exception-monitor.js5 const { execFile } = require('child_process');
11 execFile(
28 execFile(
Dtest-common.js28 const { execFile } = require('child_process');
35 execFile(process.execPath, [p], common.mustCall((err, stdout, stderr) => {
44 execFile(process.execPath, [p], {
102 execFile(process.execPath, [file], common.mustCall((err, stdout, stderr) => {
Dtest-intl.js25 const { execFile } = require('child_process');
140 execFile(
150 execFile(
Dtest-common-countdown.js7 const { execFile } = require('child_process');
27 execFile(process.argv[0], [file], common.mustCall((ex, stdout, stderr) => {
/third_party/node/test/sequential/
Dtest-deprecation-flags.js26 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) {
Dtest-process-warnings.js6 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) {
Dtest-inspector-invalid-args.js8 const execFile = require('child_process').execFile; constant
15 execFile(
/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-find-python.js7 const execFile = require('child_process').execFile constant
17 var proc = execFile(found, ['-V'], function (err, stdout, stderr) {
64 f.execFile = function (program, args, opts, cb) { function
65 f.execFile = function (program, args, opts, cb) { function
88 f.execFile = function (program, args, opts, cb) { function
109 f.execFile = function (program, args, opts, cb) { function
133 f.execFile = function (program, args, opts, cb) { function
154 f.execFile = function (program, args, opts, cb) { function
187 f.execFile = function (program, args, opts, cb) { function
189 f.execFile = function (program, args, opts, cb) { function
[all …]
Dtest-addon.js11 const execFile = childProcess.execFile constant
43 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
109 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
140 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/e2e/
Dinit.js3 const execFile = require('child_process').execFile; constant
13 server = execFile('yarn', ['run', 'start'], {});
27 execFile('yarn', ['run', 'stop'], {});
/third_party/node/tools/
Dbuild-addons.js10 const execFile = util.promisify(child_process.execFile); constant
34 await execFile(process.execPath, [nodeGyp, 'rebuild', `--directory=${dir}`],
/third_party/node/deps/npm/test/need-npm5-update/belongs-in-pacote/
Dgit-races.js2 var execFile = require('child_process').execFile variable
76 execFile(cmd, args, options, cb)
84 execFile(cmd, args, options, cb)
112 return execFile(gitcmd, fullArgs, options, cb)
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dutil.js4 const execFile = require('child_process').execFile constant
27 const child = execFile(reg, regArgs, { encoding: 'utf8' },
Dfind-python.js24 execFile: cp.execFile, property in PythonFinder
260 this.execFile(exec, args, opts, execFileCallback.bind(this))
/third_party/node/test/pummel/
Dtest-hash-seed.js16 const { execFile } = require('child_process');
17 const execFilePromise = promisify(execFile);
/third_party/protobuf/js/
Dgulpfile.js2 var execFile = require('child_process').execFile; variable
6 execFile('sh', ['-c', command], cb);

123