Skip to content

Commit f9db184

Browse files
committed
kunit debug
1 parent 2277d32 commit f9db184

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/testing/kunit/kunit_parser.py

+4
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,10 @@ def parse_run_tests(kernel_output: Iterable[str], printer: Printer) -> Test:
847847
printer.print_with_timestamp(DIVIDER)
848848
lines = extract_tap_lines(kernel_output)
849849
test = Test()
850+
stdout.print("==== Unfiltered kernel log ====")
851+
for line in kernel_output:
852+
stdout.print(line.rstrip())
853+
stdout.print("==== End of kernel log ====")
850854
if not lines:
851855
test.name = '<missing>'
852856
test.add_error(printer, 'Could not find any KTAP output. Did any KUnit tests run?')

0 commit comments

Comments
 (0)