Home
last modified time | relevance | path

Searched refs:output_path (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/
H A Dupdate.py61 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 Ddownload.py224 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 Dbuild_resource_to_cpp.py27 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 Drun_ffi_workload_test.sh184 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 Dtest_js_hermes.py33 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 Dtest_js_test262.py95 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 Dtest_ets.py265 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 Drunner.py1505 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 Dexecution.py1675 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