Home
last modified time | relevance | path

Searched refs:run_lines (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/utils/
H A Dupdate_mca_test_checks.py86 def _get_run_infos(run_lines, args): argument
88 for run_line in run_lines:
549 run_lines = common.find_run_lines(test_path, input_lines)
550 run_infos = _get_run_infos(run_lines, args)
H A Dupdate_mir_test_checks.py99 def build_run_list(test, run_lines, verbose=False): argument
102 for l in run_lines:
315 run_lines = common.find_run_lines(test, input_lines)
316 run_list = build_run_list(test, run_lines, args.verbose)
H A Dupdate_analyze_test_checks.py68 for l in ti.run_lines:
H A Dupdate_llc_test_checks.py58 for l in ti.run_lines:
H A Dupdate_test_checks.py73 for l in ti.run_lines:
H A Dupdate_cc_test_checks.py248 for l in ti.run_lines:
/llvm-project-15.0.7/llvm/utils/UpdateTestChecks/
H A Dcommon.py169 self.run_lines = find_run_lines(test, self.input_lines)
383 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
385 if run_lines[-1].endswith('\\'):
386 run_lines[-1] = run_lines[-1].rstrip('\\') + ' ' + l
388 run_lines.append(l)
389 debug('Found {} RUN lines in {}:'.format(len(run_lines), test))
390 for l in run_lines:
392 return run_lines