Lines Matching refs:match
290 ktap_match = KTAP_START.match(lines.peek())
291 tap_match = TAP_START.match(lines.peek())
320 match = TEST_HEADER.match(lines.peek())
321 if not match:
323 test.name = match.group(1)
346 match = TEST_PLAN.match(lines.peek())
347 if not match:
350 expected_count = int(match.group(1))
378 match = TEST_RESULT.match(line)
379 if not match:
381 name = match.group(4)
409 match = TEST_RESULT.match(line)
410 skip_match = TEST_RESULT_SKIP.match(line)
413 if not match:
421 test.name = match.group(4)
424 num = int(match.group(2))
429 status = match.group(1)
457 while lines and not any(re.match(lines.peek())