Searched refs:cmds (Results 1 - 13 of 13) sorted by relevance
/arkcompiler/ets_frontend/es2panda/test/benchmark/ |
H A D | run_benchmark.py | 55 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 D | config.py | 31 BUILD_HERMES_CMDS = cmds = [['cmake', '-S', HERMES_CLONE_PATH, '-B', HERMES_BUILD_PATH, '-G', 'Ninja',
|
H A D | utils.py | 53 def run_cmd_cwd(cmds): 54 p = subprocess.Popen(cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/arkcompiler/toolchain/tooling/client/tcpServer/ |
H A D | tcp_server.cpp | 189 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 D | tcp_server.h | 69 bool FindCommand(std::vector<std::string> cmds, std::string cmd);
|
/arkcompiler/ets_frontend/test262/ |
H A D | utils.py | 179 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 D | test_reporter.rb | 145 def log_repro_commands(cmds) 146 return unless cmds.length.positive? 149 @logger.log 1, cmds
|
H A D | jtr_reporter.rb | 156 def log_repro_commands(cmds) end
|
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
H A D | test_reporter.rb | 145 def log_repro_commands(cmds) 146 return unless cmds.length.positive? 149 @logger.log 1, cmds
|
H A D | jtr_reporter.rb | 156 def log_repro_commands(cmds) end
|
/arkcompiler/ets_runtime/test/workloadtest/ |
H A D | work_load.py | 100 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 D | run_ts_test262.py | 135 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 D | run_regress_test.py | 355 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