• Home
  • Raw
  • Download

Lines Matching refs:test_name

151         test_name = test['test_name']
156 …f.write("<tr class='light-row'><td><pre><a href=\'" + os.path.join(test_name, "index.html") + "\'>…
157 test_name + "</a></pre></td>")
192 def get_profraw_for_test(test_name): argument
194 test_cmd = os.path.join(os.path.join(test_root, test_name), test_name)
196 logging.error('The test ' + test_name + ' does not exist, please compile first')
199 profraw_file_name = test_name + ".profraw"
200 profraw_path = os.path.join(WORKING_DIR, os.path.join(test_name, profraw_file_name))
204 logging.info('Generating profraw data for ' + test_name)
207 … logging.error('Test ' + test_name + ' failed. Please fix the test before generating coverage.')
218 def merge_profraw_data(test_name): argument
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")
227 logging.info('Combining profraw files into profdata for ' + test_name)
230 logging.error('Failed to merge profraw files for ' + test_name)
237 test_name = test['test_name']
240 test_working_dir = os.path.join(WORKING_DIR, test_name)
241 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
251 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
267 test_name = test['test_name']
270 test_working_dir = os.path.join(WORKING_DIR, test_name)
271 test_profdata_file = os.path.join(test_working_dir, test_name + ".profdata")
282 test_cmd = os.path.join(os.path.join(get_native_test_root_or_die(), test_name), test_name)
297 test_name = test['test_name']
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')
391 for test_name in args.tests:
392 logging.error('\"' + test_name + '\" was not found in the list of available tests.')