Lines Matching refs:line
56 for line in kernel_output:
57 line = line.rstrip() # line always has a trailing \n
58 if kunit_start_re.search(line):
59 prefix_len = len(line.split('TAP version')[0])
61 yield line[prefix_len:] if prefix_len > 0 else line
62 elif kunit_end_re.search(line):
65 yield line[prefix_len:] if prefix_len > 0 else line
68 for line in kernel_output:
69 print(line.rstrip())
120 line = lines[0]
121 match = OK_NOT_OK_SUBTEST.match(line)
123 line = lines.pop(0)
124 match = OK_NOT_OK_SUBTEST.match(line)
145 line = lines[0]
146 match = SUBTEST_DIAGNOSTIC.match(line)
208 line = lines[0]
209 match = OK_NOT_OK_MODULE.match(line)