Lines Matching refs:lines

157 	def __init__(self, lines: Iterator[Tuple[int, str]]):
159 self._lines = lines
248 return LineStream(lines=isolate_ktap_output(kernel_output))
273 def parse_ktap_header(lines: LineStream, test: Test, printer: Printer) -> bool:
290 ktap_match = KTAP_START.match(lines.peek())
291 tap_match = TAP_START.match(lines.peek())
300 lines.pop()
305 def parse_test_header(lines: LineStream, test: Test) -> bool:
320 match = TEST_HEADER.match(lines.peek())
324 lines.pop()
329 def parse_test_plan(lines: LineStream, test: Test) -> bool:
346 match = TEST_PLAN.match(lines.peek())
352 lines.pop()
359 def peek_test_name_match(lines: LineStream, test: Test) -> bool:
377 line = lines.peek()
384 def parse_test_result(lines: LineStream, test: Test,
408 line = lines.peek()
415 lines.pop()
438 def parse_diagnostic(lines: LineStream) -> List[str]:
457 while lines and not any(re.match(lines.peek())
459 log.append(lines.pop())
690 def parse_test(lines: LineStream, expected_num: int, log: List[str], is_subtest: bool, printer: Pri…
755 err_log = parse_diagnostic(lines)
762 parse_ktap_header(lines, test, printer)
763 test.log.extend(parse_diagnostic(lines))
764 parse_test_plan(lines, test)
769 ktap_line = parse_ktap_header(lines, test, printer)
770 subtest_line = parse_test_header(lines, test)
771 test.log.extend(parse_diagnostic(lines))
772 parse_test_plan(lines, test)
786 sub_log = parse_diagnostic(lines)
788 if not lines or (peek_test_name_match(lines, test) and
803 sub_test = parse_test(lines, test_num, sub_log, True, printer)
809 test.log.extend(parse_diagnostic(lines))
810 if test.name != "" and not peek_test_name_match(lines, test):
813 parse_test_result(lines, test, expected_num, printer)
847 lines = extract_tap_lines(kernel_output)
849 if not lines:
854 test = parse_test(lines, 0, [], False, printer)