Lines Matching refs:match
288 ktap_match = KTAP_START.match(lines.peek())
289 tap_match = TAP_START.match(lines.peek())
318 match = TEST_HEADER.match(lines.peek())
319 if not match:
321 test.name = match.group(1)
344 match = TEST_PLAN.match(lines.peek())
345 if not match:
348 expected_count = int(match.group(1))
361 Returns False if fails to match format or name.
376 match = TEST_RESULT.match(line)
377 if not match:
379 name = match.group(4)
386 object. Reports an error if the test number does not match expected
406 match = TEST_RESULT.match(line)
407 skip_match = TEST_RESULT_SKIP.match(line)
410 if not match:
418 test.name = match.group(4)
421 num = int(match.group(2))
426 status = match.group(1)
437 Parse lines that do not match the format of a test result line or
454 while lines and not any(re.match(lines.peek())