Home
last modified time | relevance | path

Searched refs:execPath (Results 1 - 25 of 137) sorted by relevance

123456

/third_party/node/test/parallel/
H A Dtest-source-map-enable.js25 const output = spawnSync(process.execPath, [
40 const output = spawnSync(process.execPath, [
57 const output = spawnSync(process.execPath, [
68 const output = spawnSync(process.execPath, [
80 const output = spawnSync(process.execPath, [
101 const output = spawnSync(process.execPath, [
122 const output = spawnSync(process.execPath, [
138 const output = spawnSync(process.execPath, [
154 const output = spawnSync(process.execPath, [
169 const output = spawnSync(process.execPath, [
[all...]
H A Dtest-child-process-execfile.js17 process.execPath,
22 `Command failed: ${process.execPath} ${fixture} 42`);
30 const errorString = `Error: Command failed: ${process.execPath}`;
37 assert.strictEqual(err.cmd, process.execPath);
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, [fixtur
[all...]
H A Dtest-child-process-execfile-maxbuf.js17 process.execPath,
26 process.execPath,
39 process.execPath,
57 process.execPath,
65 process.execPath,
74 process.execPath,
85 process.execPath,
H A Dtest-vfs.js24 const vfsDirectory = join(process.execPath, 'directory');
25 const vfsDoesNotExist = join(process.execPath, 'does-not-exist');
26 const vfsFile = join(process.execPath, 'file.js');
44 if (!filename.startsWith(process.execPath)) {
48 if (filename === process.execPath) {
65 if (!pathArgument.startsWith(process.execPath)) {
86 strictEqual(Module._stat(process.execPath), 1);
H A Dtest-runner-coverage.js75 const result = spawnSync(process.execPath, args);
89 const result = spawnSync(process.execPath, args, options);
101 const result = spawnSync(process.execPath, args);
116 const result = spawnSync(process.execPath, args, options);
128 const result = spawnSync(process.execPath, args);
143 const result = spawnSync(process.execPath, args);
176 const result = spawnSync(process.execPath, args, {
H A Dtest-child-process-spawnsync-input.js58 ret = spawnSync(process.execPath, args, { stdio: 'inherit' });
62 ret = spawnSync(process.execPath, args, {
72 verifyBufOutput(spawnSync(process.execPath, [__filename, 'spawnchild', 1]));
73 verifyBufOutput(spawnSync(process.execPath, [__filename, 'spawnchild', 2]));
119 verifyBufOutput(spawnSync(process.execPath, args));
121 ret = spawnSync(process.execPath, args, { encoding: 'utf8' });
H A Dtest-child-process-execFile-promisified-abortController.js20 const promise = promisified(process.execPath, [echoFixture, 0], { signal });
35 promisified(process.execPath, [echoFixture, 0], { signal }),
45 promisified(process.execPath, [echoFixture, 0], { signal });
54 promisified(process.execPath, [echoFixture, 0], { signal });
H A Dtest-v8-coverage.js22 const output = spawnSync(process.execPath, [
41 const output = spawnSync(process.execPath, [
59 const output = spawnSync(process.execPath, [
78 const output = spawnSync(process.execPath, [
99 const output = spawnSync(process.execPath, [
119 const output = spawnSync(process.execPath, [
139 const output = spawnSync(process.execPath, [
155 const output = spawnSync(process.execPath, [
174 const output = spawnSync(process.execPath, [
H A Dtest-set-http-max-http-headers.js24 const cp = spawn(process.execPath, args, { stdio: 'inherit' });
45 const cp = spawn(process.execPath, args, {
68 const cp = spawn(process.execPath, args, { env, stdio: 'inherit' });
80 const cp = spawn(process.execPath, args, { env, stdio: 'inherit' });
H A Dtest-runner-cli.js14 const child = spawnSync(process.execPath, args);
26 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') });
43 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') });
60 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
72 const child = spawnSync(process.execPath, args);
85 const child = spawnSync(process.execPath, args, options);
109 const child = spawnSync(process.execPath, args);
127 const child = spawnSync(process.execPath, args);
176 const child = spawnSync(process.execPath, args);
202 const child = spawnSync(process.execPath, arg
[all...]
H A Dtest-child-process-fork-exec-path.js25 // Test that `fork()` respects the `execPath` option.
35 const nodePath = process.execPath;
42 assert.strictEqual(process.execPath, copyPath);
55 const child = fork(__filename, { execPath: copyPath, env: envCopy });
H A Dtest-cli-bad-options.js18 const r = spawnSync(process.execPath, [option], { encoding: 'utf8' });
25 `${process.execPath}: ${option} requires an argument`
H A Dtest-cli-node-options-disallowed.js35 exec(process.execPath, { cwd: tmpdir.path, env }, common.mustCall((err) => {
37 const expect = `${process.execPath}: ${opt} is not allowed in NODE_OPTIONS`;
H A Dtest-fs-readfile-error.js39 const execPath = `"${process.execPath}" "${filename}"`;
41 exec(execPath, options, (err, stdout, stderr) => {
H A Dtest-snapshot-weak-reference.js19 const child = spawnSync(process.execPath, [
39 const child = spawnSync(process.execPath, [
H A Dtest-listen-fd-detached-inherit.js45 const parent = spawn(process.execPath, [__filename, 'parent'], {
92 const child = spawn(process.execPath, [__filename, 'child'], {
/third_party/node/test/sequential/
H A Dtest-child-process-execsync.js57 const cmd = `"${process.execPath}" -e "setTimeout(function(){}, ${SLEEP});"`;
81 const cmd = `"${process.execPath}" -e "console.log('${msg}');"`;
99 const ret = execFileSync(process.execPath, args);
104 const ret = execFileSync(process.execPath, args, { encoding: 'utf8' });
129 const spawnSyncResult = spawnSync(process.execPath, args);
141 execFileSync(process.execPath, args);
143 const msg = `Command failed: ${process.execPath} ${args.join(' ')}`;
159 execFileSync(process.execPath, [], execOpts);
/third_party/node/tools/
H A Dtest-npm-package.js29 const nodePath = path.dirname(process.execPath);
73 spawnSync(process.execPath, [
80 spawnSync(process.execPath, [
88 const testChild = spawn(process.execPath, [
/third_party/node/deps/npm/test/fixtures/
H A Dsandbox.js128 ? dirname(_process.execPath)
129 : dirname(dirname(_process.execPath))
138 .split(normalize(this[_proxy].execPath)).join('{EXECPATH}')
139 .split(normalize(_process.execPath)).join('{REALEXECPATH}')
155 // instance if execPath is /home/user/.nvm/versions/node/1.0.0/bin/node,
156 // and we replaced the node version first, the real execPath we're trying
218 process.execPath,
219 join(dirname(process.execPath), 'npm'),
/third_party/node/test/async-hooks/
H A Dtest-callback-error.js40 const child = spawnSync(process.execPath, [__filename, 'test_init_callback']);
51 const child = spawnSync(process.execPath, [__filename, 'test_callback']);
62 let program = process.execPath;
/third_party/node/test/tick-processor/
H A Dtest-tick-processor-polyfill-brokenfile.js33 const proc = spawn(process.execPath, [
51 `${process.execPath}`,
H A Dtick-processor-base.js14 const proc = cp.spawn(process.execPath, [
36 const proc = cp.spawn(process.execPath, [
/third_party/node/test/common/
H A Dshared-lib-util.js7 const kExecPath = path.dirname(process.execPath);
43 return kNodeShared ? getSharedLibPath() : process.execPath;
/third_party/node/test/report/
H A Dtest-report-writereport.js99 const child = spawnSync(process.execPath, args, { cwd: tmpdir.path });
109 const child = spawnSync(process.execPath, args, { cwd: tmpdir.path });
124 const child = spawnSync(process.execPath, args, { cwd: tmpdir.path });
/third_party/node/test/internet/
H A Dtest-corepack-yarn-install.js42 PATH: path.dirname(process.execPath),
47 exec(`${process.execPath} ${corepackYarnPath} install`, {

Completed in 4 milliseconds

123456