Home
last modified time | relevance | path

Searched refs:file_paths (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_frontend/es2panda/test/benchmark/
Dutils.py39 file_paths = {}
43 file_paths.update(traverse_dir(file_path))
46 if dir_name not in file_paths:
47 file_paths[dir_name] = [file_path]
49 file_paths[dir_name].append(file_path)
50 return file_paths
173 def delete_files(file_paths): argument
174 for file_path in file_paths:
Drun_benchmark.py86 for dir_name, file_paths in test_cases_files.items():
93 … case_execution_time_sum, means = self.run_benchmark(file_paths, engine_type, case_dir_name,
108 def run_benchmark(self, file_paths, engine_type, case_dir_name, case_info_html_data): argument
111 for file_path in file_paths:
/arkcompiler/ets_runtime/test/
Drun_ts_test262.py214 for file_paths in get_path_file("test262/test"):
215 if file_paths.endswith(".abc") | file_paths.endswith(".ai") | file_paths.endswith(".an"):
216 if os.path.exists(file_paths):
217 os.remove(file_paths)
/arkcompiler/ets_runtime/test/workloadtest/
Dwork_load.py183 file_paths = glob.glob(os.path.join("./", "pgo_data_*.xlsx"))
185 file_paths.sort(key=lambda x: datetime.datetime.strptime(
188 max_two_files = file_paths[:2]