Lines Matching refs:cmd
240 cmd = [es2abc_path, "--module", "--merge-abc", "--extension=js", js_file_path]
242 logger.info("run cmd: %s", cmd)
243 ret = subprocess.run(cmd)
245 logger.error("ret = %s, %s generate abc file failed. cmd: %s", str(ret), js_file_name, cmd)
252 logger.error("ret.returncode = %s, %s generate abc file failed. cmd: %s", str(ret.returncode), js_file_name,
258 cmd = [ark_js_vm_path,
264 logger.info("run cmd: %s", cmd)
265 ret = subprocess.run(cmd)
267 logger.error("ret = %s, %s pgo file failed. cmd: %s", str(ret), cur_abc_file, cmd)
273 cmd = [ark_aot_compiler_path,
278 logger.info("run cmd: %s", cmd)
279 ret = subprocess.run(cmd)
281 logger.error("ret = %s, %s aot file failed. cmd: %s", str(ret), cur_abc_file, cmd)
287 cmd = [ark_js_vm_path,
294 logger.info("run cmd: %s", cmd)
295 ret = subprocess.run(cmd)
297 logger.error("ret = %s, %s sencond time pgo file failed. cmd: %s", str(ret), cur_abc_file, cmd)
303 cmd = [ark_aot_compiler_path,
308 logger.info("run cmd: %s", cmd)
309 ret = subprocess.run(cmd)
311 logger.error("ret = %s, %s second time aot file failed. cmd: %s", str(ret), cur_abc_file, cmd)
317 cmd = [ark_js_vm_path,
324 logger.info("run cmd: %s", cmd)
330 ret = subprocess.run(cmd, stdout=outfile)
333 logger.error("%s execute abc file failed. cmd: %s", js_file_name, cmd)
352 logger.info("%s execute abc file successfully. cmd: %s case_test_data: %s", js_file_name, cmd, case_test_data)
659 cmd = [Constants.V_8_ENGINED_PATH, js_file_path]
661 cmd = [Constants.V_8_ENGINED_PATH, cmd_para, js_file_path]
662 logger.info("run cmd:%s", cmd)
663 ret = subprocess.run(cmd, stdout=outfile)
668 logger.error("execute cmd failed. cmd: %s", cmd)
671 logger.info("v 8 excute %s successfully. cmd: %s", js_file_path, cmd)