Lines Matching refs:os
21 import os
156 …f.write("<tr class='light-row'><td><pre><a href=\'" + os.path.join(test_name, "index.html") + "\'>…
181 source_file = os.path.join(os.path.join(WORKING_DIR, tests[0]['test_name']), "style.css")
182 dest_file = os.path.join(WORKING_DIR, "style.css")
186 f = open(os.path.join(WORKING_DIR, "index.html"), "w")
194 test_cmd = os.path.join(os.path.join(test_root, test_name), test_name)
195 if not os.path.isfile(test_cmd):
200 profraw_path = os.path.join(WORKING_DIR, os.path.join(test_name, profraw_file_name))
210 if not os.path.isfile(profraw_path):
220 cmd.append(os.path.join(get_android_root_or_die(), LLVM_MERGE + " merge "))
222 test_working_dir = os.path.join(WORKING_DIR, test_name)
223 cmd.append(os.path.join(test_working_dir, test_name + ".profraw"))
224 profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
240 test_working_dir = os.path.join(WORKING_DIR, test_name)
241 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
244 os.path.join(get_android_root_or_die(), LLVM_COV), "show", "-format=html", "-summary-only",
251 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
256 cmd.append(os.path.join(get_android_root_or_die(), filename))
270 test_working_dir = os.path.join(WORKING_DIR, test_name)
271 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
274 os.path.join(get_android_root_or_die(), LLVM_COV),
282 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
287 cmd.append(os.path.join(get_android_root_or_die(), filename))
298 test_working_dir = os.path.join(WORKING_DIR, test_name)
299 test_json_summary_file = os.path.join(test_working_dir, test_name + '.json')
369 WORKING_DIR = os.path.abspath(args.output)
409 webbrowser.open('file://' + os.path.join(WORKING_DIR, 'index.html'))