Home
last modified time | relevance | path

Searched refs:execSync (Results 1 – 25 of 35) sorted by relevance

12

/third_party/node/test/sequential/
Dtest-child-process-execsync.js29 const { execFileSync, execSync, spawnSync } = require('child_process');
39 function() { execSync('exit -1', { shell: 'bad_shell' }); },
52 ret = execSync(cmd, { timeout: TIMER });
67 execSync('iamabadcommand');
78 const ret = execSync(cmd);
84 const ret = execSync(cmd, { encoding: 'utf8' });
107 const response = execSync(cmd, { cwd });
116 execSync('exit -1', { stdio: 'ignore' });
Dtest-child-process-emfile.js31 const ulimit = Number(child_process.execSync('ulimit -Hn'));
/third_party/node/test/parallel/
Dtest-child-process-execsync-maxbuf.js9 const { execSync } = require('child_process');
21 execSync(`"${process.execPath}" ${args.join(' ')}`, { maxBuffer: 1 });
35 const ret = execSync(
46 execSync(
59 const ret = execSync(
Dtest-fs-mkdir-recursive-eaccess.js19 const { execSync } = require('child_process');
29 execSync(`icacls ${dir} /inheritance:r`);
30 execSync(`icacls ${dir} /deny "everyone":W`);
39 execSync(`icacls ${dir} /grant "everyone":W`);
Dtest-module-readonly.js27 cp.execSync(
31 cp.execSync(`icacls.exe "${readOnlyModFullPath}" /grant "%USERNAME%":RX`);
42 cp.execSync(
Dtest-module-loading-error.js25 const { execSync } = require('child_process');
52 localeOk = execSync(powerShellFindMUI).toString('utf8').trim() === 'en';
Dtest-repl-persistent-history.js143 const execSync = require('child_process').execSync; constant
144 execSync(`ATTRIB +H "${emptyHiddenHistoryPath}"`, (err) => {
Dtest-repl-programmatic-history.js139 const execSync = require('child_process').execSync; constant
140 execSync(`ATTRIB +H "${emptyHiddenHistoryPath}"`, (err) => {
Dtest-cluster-fork-windowsHide.js61 output = child_process.execSync(
Dtest-domain-abort-on-uncaught.js216 child_process.execSync(testCmd);
/third_party/weex-loader/deps/weex-scripter/lib/
Drequire-bundle.js2 var execSync = require('child_process').execSync variable
23 var bundleCode = execSync(cmd)
/third_party/typescript/scripts/
DconfigureLanguageServiceBuild.ts5 import { execSync } from "child_process";
68 execSync("rm -rf loc", { cwd: dirname(packageJsonFilePath) });
71 execSync("rm -rf bin", { cwd: dirname(packageJsonFilePath) });
DproduceLKG.ts102 childProcess.execSync(cmdLine);
DcreatePlaygroundBuild.js45 …const npmLsOutput = JSON.parse(child_process.execSync("npm ls typescript --depth=0 --json=true").t…
/third_party/node/test/pseudo-tty/
Dtest-repl-external-module.js5 const { execSync } = require('child_process');
7 execSync(process.execPath, {
/third_party/node/deps/npm/scripts/
Dchangelog.js14 const execSync = require('child_process').execSync constant
16 const log = execSync(`git log --reverse --pretty='format:%h %H%d %s (%aN)%n%b%n---%n' ${branch}...`…
Dupdate-dist-tags.js19 const { execSync } = require('child_process')
107 …const result = execSync(`npm dist-tag set npm@${version} ${tag} --otp=${otp}`, { encoding: 'utf-8'…
117 const result = execSync(`npm dist-tag rm npm ${tag} --otp=${otp}`, { encoding: 'utf-8' })
/third_party/node/benchmark/child_process/
Dchild-process-exec-stdout.js3 const { exec, execSync } = require('child_process');
32 execSync(`taskkill /f /t /pid ${child.pid}`);
Dchild-process-read.js35 child_process.execSync(`taskkill /f /t /pid ${child.pid}`);
/third_party/node/tools/doc/
Dapilinks.mjs26 function execSync(command) { function
28 return child_process.execSync(
38 const localBranch = execSync('git name-rev --name-only HEAD');
39 const trackingRemote = execSync(`git config branch.${localBranch}.remote`);
40 const remoteUrl = execSync(`git config remote.${trackingRemote}.url`);
44 const hash = execSync('git log -1 --pretty=%H') || 'master';
45 const tag = execSync(`git describe --contains ${hash}`).split('\n')[0] || hash;
/third_party/node/tools/
Dlint-sh.js4 const { execSync, spawn } = require('child_process');
91 execSync('command -v ' + (USE_NPX ? 'npx' : SHELLCHECK_EXE_NAME))
113 process.env.GIT || execSync('command -v git').toString().trim();
/third_party/node/test/pummel/
Dtest-fs-readfile-tostring-fail.js13 if (common.isAIX && (Number(cp.execSync('ulimit -f')) * 512) < kStringMaxLength)
/third_party/node/deps/npm/node_modules/performance-now/test/
Dscripts.coffee2 exec = require("child_process").execSync
/third_party/node/test/common/
Dindex.js27 const { exec, execSync, spawnSync } = require('child_process');
431 const output = execSync(`${whoamiPath} /priv`, { timeout: 1000 });
813 execSync('sysctl -n security.jail.jailed').toString() === '1\n') {
/third_party/node/lib/
Dchild_process.js854 function execSync(command, options) { function
935 execSync, property

12