Lines Matching full:match
139 while lines and not TAP_ENTRIES.match(lines.peek()):
143 while lines and not TAP_ENTRIES.match(lines.peek()):
161 match = OK_NOT_OK_SUBTEST.match(line)
162 while not match and lines:
164 match = OK_NOT_OK_SUBTEST.match(line)
165 if match:
167 test_case.name = match.group(2)
168 skip_match = OK_NOT_OK_SKIP.match(line)
174 if match.group(1) == 'ok':
190 match = SUBTEST_DIAGNOSTIC.match(line)
191 if match:
193 crash_match = DIAGNOSTIC_CRASH_MESSAGE.match(line)
216 match = SUBTEST_HEADER.match(lines.peek())
217 if match:
219 return match.group(1)
227 match = SUBTEST_PLAN.match(lines.peek())
228 if match:
230 return int(match.group(1))
254 match = OK_NOT_OK_MODULE.match(line)
255 if match:
257 if match.group(1) == 'ok':
261 skip_match = OK_NOT_OK_SKIP.match(line)
264 suite_index = int(match.group(2))
314 if TAP_HEADER.match(lines.peek()):
324 match = TEST_PLAN.match(lines.peek())
325 if match:
327 return int(match.group(1))