• Home
  • Raw
  • Download

Lines Matching refs:os

21 import os
153 os.path.join(test_name, "index.html") + "\'>" + test_name +
178 source_file = os.path.join(os.path.join(WORKING_DIR, tests[0]['test_name']), "style.css")
179 dest_file = os.path.join(WORKING_DIR, "style.css")
183 f = open(os.path.join(WORKING_DIR, "index.html"), "w")
191 test_cmd = os.path.join(os.path.join(test_root, test_name), test_name)
192 if not os.path.isfile(test_cmd):
197 profraw_path = os.path.join(WORKING_DIR, os.path.join(test_name, profraw_file_name))
207 if not os.path.isfile(profraw_path):
216 cmd.append(os.path.join(get_android_root_or_die(), LLVM_MERGE + " merge "))
218 test_working_dir = os.path.join(WORKING_DIR, test_name);
219 cmd.append(os.path.join(test_working_dir, test_name + ".profraw"))
220 profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
236 test_working_dir = os.path.join(WORKING_DIR, test_name)
237 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
240 os.path.join(get_android_root_or_die(), LLVM_COV),
253 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
258 cmd.append(os.path.join(get_android_root_or_die(), filename))
272 test_working_dir = os.path.join(WORKING_DIR, test_name)
273 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
276 os.path.join(get_android_root_or_die(), LLVM_COV),
284 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
289 cmd.append(os.path.join(get_android_root_or_die(), filename))
300 test_working_dir = os.path.join(WORKING_DIR, test_name)
301 test_json_summary_file = os.path.join(test_working_dir, test_name + '.json')
368 WORKING_DIR = os.path.abspath(args.output)
408 webbrowser.open('file://' + os.path.join(WORKING_DIR, 'index.html'))