Lines Matching refs:join
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)
197 profraw_path = os.path.join(WORKING_DIR, os.path.join(test_name, profraw_file_name))
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")
224 logging.debug('cmd: ' + " ".join(cmd))
225 if subprocess.call(" ".join(cmd), shell=True) != 0:
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))
261 logging.debug('cmd: ' + " ".join(cmd))
262 if subprocess.call(" ".join(cmd), shell=True) != 0:
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))
292 logging.debug('cmd: ' + " ".join(cmd))
294 json_str = subprocess.check_output(" ".join(cmd), shell=True)
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')
408 webbrowser.open('file://' + os.path.join(WORKING_DIR, 'index.html'))