test-runner: don't kill dmesg after individual tests

This prevents any kernel logging from being available after the first
test is finished.
This commit is contained in:
James Prestwood 2022-03-31 16:16:34 -07:00 committed by Denis Kenzior
parent 5a14daf9b8
commit b342dfd8d5
1 changed files with 3 additions and 0 deletions

View File

@ -186,6 +186,9 @@ class Process(subprocess.Popen):
@classmethod
def kill_all(cls):
for p in cls.processes.values():
if p.args[0] == 'dmesg':
continue
p.kill()
@staticmethod