Lines Matching refs:os
17 import os
74 for root, _, files in os.walk(tests_path):
77 test_suite_path = os.path.join(root, test_suite_name)
89 for root, _, files in os.walk(test_directory):
91 test_suite_path = os.path.join(root, file)
92 name, ext = os.path.splitext(file)
111 if os.path.exists(xml_file_path):
122 json_file_path = os.path.join(test_directory, "test_result.json")
123 flags = os.O_CREAT | os.O_WRONLY | os.O_TRUNC
125 with os.fdopen(os.open(json_file_path, flags, mode), 'w') as json_file:
135 code_path = os.getcwd()
137 code_path = os.path.dirname(code_path)
138 code_path = os.path.join(code_path, "out/rk3568/clang_x64/tests/unittest/ace_engine")