Home
last modified time | relevance | path

Searched refs:cmds (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/ets_frontend/es2panda/test/benchmark/
H A Drun_benchmark.py55 self.cmds = {}
59 cmds = {ES2ABC: [self.args.es2abc_tool]}
61 cmds[ES2ABC].append('--parse-only')
66 cmds[ES2ABC].append(f'--opt-level {self.args.opt_level}')
71 cmds[ES2ABC] += DEFAULT_PARAMS
73 cmds[HERMES] = [DEFAULT_HERMES_PATH] + DEFAULT_HERMES_PARAMS
77 self.cmds = cmds
91 for engine_type in self.cmds:
137 new_cmds = [i for i in self.cmds[engine_typ
[all...]
H A Dconfig.py31 BUILD_HERMES_CMDS = cmds = [['cmake', '-S', HERMES_CLONE_PATH, '-B', HERMES_BUILD_PATH, '-G', 'Ninja',
H A Dutils.py53 def run_cmd_cwd(cmds):
54 p = subprocess.Popen(cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/arkcompiler/toolchain/tooling/client/tcpServer/
H A Dtcp_server.cpp189 bool TcpServer::FindCommand(std::vector<std::string> cmds, std::string cmd) in FindCommand() argument
191 return find(cmds.begin(), cmds.end(), cmd) != cmds.end(); in FindCommand()
H A Dtcp_server.h69 bool FindCommand(std::vector<std::string> cmds, std::string cmd);
/arkcompiler/ets_frontend/test262/
H A Dutils.py179 def __init__(self, cmds, cwd):
180 self.cmds = cmds
184 cmd = " ".join(self.cmds)
187 proc = subprocess.Popen(self.cmds, cwd=self.cwd ,shell=True)
189 proc = subprocess.Popen(self.cmds, cwd=self.cwd)
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/
H A Dtest_reporter.rb145 def log_repro_commands(cmds)
146 return unless cmds.length.positive?
149 @logger.log 1, cmds
H A Djtr_reporter.rb156 def log_repro_commands(cmds) end
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
H A Dtest_reporter.rb145 def log_repro_commands(cmds)
146 return unless cmds.length.positive?
149 @logger.log 1, cmds
H A Djtr_reporter.rb156 def log_repro_commands(cmds) end
/arkcompiler/ets_runtime/test/workloadtest/
H A Dwork_load.py100 cmds = ['git', 'pull', '--rebase']
101 with subprocess.Popen(cmds, cwd=check_out_dir) as proc:
106 cmds = ['git', 'checkout', '--', '.']
107 with subprocess.Popen(cmds, cwd=clean_dir) as proc:
/arkcompiler/ets_runtime/test/
H A Drun_ts_test262.py135 cmds = [args.ark_aot, '--aot-file=', paths, abc_file_path_temp]
138 process = subprocess.Popen(cmds, stdin=subprocess.PIPE,
/arkcompiler/ets_runtime/test/regresstest/
H A Drun_regress_test.py355 cmds = ['git', 'checkout', checkout_options]
357 with subprocess.Popen(cmds, cwd=check_out_dir) as proc:
366 cmds = ['git', 'pull', '--rebase']
367 with subprocess.Popen(cmds, cwd=check_out_dir) as proc:
372 cmds = ['git', 'checkout', '--', '.']
373 with subprocess.Popen(cmds, cwd=clean_dir) as proc:
378 cmds = ['git', 'clone', git_url, code_dir]
381 with subprocess.Popen(cmds) as proc:

Completed in 7 milliseconds