Searched refs:output_path (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
H A D | update.py | 61 def after_update_sdk(file_path, output_path): 63 add_executable_permission_for_mac(output_path) 65 modify_package_json(file_path, output_path) 96 def get_output_path_api_version(output_path): 97 api_version = os.path.basename(output_path) 99 parts = output_path.split(os.sep) 113 def modify_package_json(file_path, output_path): 114 output_path_version = get_output_path_api_version(output_path) 122 for file_name in os.listdir(output_path): 125 package_json_path = os.path.join(output_path, r [all...] |
H A D | download.py | 224 for output_path in output_path_list: 225 cmd.extend([output_path]) 231 for output_path in output_path_list: 232 cmd.extend([output_path])
|
/arkcompiler/ets_runtime/script/ |
H A D | build_resource_to_cpp.py | 27 def resource_file_to_cpp(input_dir, input_file, output_path): 30 with open(output_path, 'a') as cpp_file_object: 63 output_path = os.path.abspath(args.output) 64 resource_file_to_cpp(input_dir, input_file, output_path)
|
/arkcompiler/ets_runtime/test/ffiworkloadtest/ |
H A D | run_ffi_workload_test.sh | 184 output_path=$FFI_WORKLOAD_TEST_ARCHIVE_PATH/ffi_workload_daily_report_$time_str".xlsx" 193 if [ -f "$output_path" ];then 194 echo "run workload test successfully and get daily report. report path: $output_path"
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/ |
H A D | test_js_hermes.py | 33 def _validate_compiler(return_code: int, output_path: str) -> bool: 34 return return_code == 0 and path.exists(output_path) and path.getsize(output_path) > 0
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/ |
H A D | test_js_test262.py | 95 actual_return_code: int, desc: Dict[str, Any], output_path: str) -> bool: 103 check_abc_file = self.need_exec and (path.exists(output_path) and path.getsize(output_path) > 0) or \
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ |
H A D | test_ets.py | 265 def _validate_compiler(self, return_code: int, output_path: str) -> bool: 268 return return_code == 0 and path.exists(output_path) and path.getsize(output_path) > 0
|
/arkcompiler/ets_frontend/es2panda/test/ |
H A D | runner.py | 1505 output_path = "%s_version_API%s%s.abc" % ( 1510 self.test_abc_path_list.add(output_path) 1511 _, stderr = self.compile_for_target_version(flags, source_path, output_path, main_version, beta_version) 1522 def compile_for_target_version(self, flags, input_path, output_path, target_api_version, target_api_sub_version=""): 1528 cmd.extend(["--output=%s" % (output_path)]) 1653 self, runner, input_path, output_path, target_api_version, target_api_sub_version="" 1662 cmd.extend(["--output=%s" % (output_path)])
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
H A D | execution.py | 1675 output_path = utils.get_output_path(task, module, output_type) 1676 output_file = os.path.join(task.path, *module_path, *task.build_path, *output_path)
|
Completed in 10 milliseconds