Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dupdate_test_checks.py80 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
82 if run_lines[-1].endswith("\\"):
83 run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l
85 run_lines.append(l)
88 print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),)
89 for l in run_lines:
93 for l in run_lines:
Dupdate_llc_test_checks.py58 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
60 if run_lines[-1].endswith("\\"):
61 run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l
63 run_lines.append(l)
66 print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),)
67 for l in run_lines:
71 for l in run_lines:
Dupdate_analyze_test_checks.py80 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
82 if run_lines[-1].endswith("\\"):
83 run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l
85 run_lines.append(l)
88 print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),)
89 for l in run_lines:
93 for l in run_lines:
Dupdate_mca_test_checks.py93 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
95 if run_lines[-1].endswith(r'\\'):
96 run_lines[-1] = run_lines[-1].rstrip('\\') + ' ' + l
98 run_lines.append(l)
102 len(run_lines), '' if len(run_lines) == 1 else 's'))
103 for line in run_lines:
106 return run_lines
109 def _get_run_infos(run_lines, args): argument
111 for run_line in run_lines:
484 run_lines = _find_run_lines(input_lines, args)
[all …]
Dupdate_cc_test_checks.py138 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
140 if run_lines[-1].endswith("\\"):
141 run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l
143 run_lines.append(l)
146 print('Found {} RUN lines:'.format(len(run_lines)), file=sys.stderr)
147 for l in run_lines:
153 for l in run_lines:
Dupdate_mir_test_checks.py102 run_lines = [raw_lines[0]] if len(raw_lines) > 0 else []
104 if run_lines[-1].endswith("\\"):
105 run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l
107 run_lines.append(l)
109 log('Found {} RUN lines:'.format(len(run_lines)))
110 for l in run_lines:
112 return run_lines
115 def build_run_list(test, run_lines, verbose=False): argument
118 for l in run_lines:
299 run_lines = find_run_lines(test, input_lines, verbose)
[all …]
/external/llvm/utils/
Dupdate_llc_test_checks.py158 run_lines = [m.group(1)
161 print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),)
162 for l in run_lines:
166 for l in run_lines:
Dupdate_test_checks.py295 run_lines = [m.group(1)
298 print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),)
299 for l in run_lines:
303 for l in run_lines: