mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
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:
parent
5a14daf9b8
commit
b342dfd8d5
@ -186,6 +186,9 @@ class Process(subprocess.Popen):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def kill_all(cls):
|
def kill_all(cls):
|
||||||
for p in cls.processes.values():
|
for p in cls.processes.values():
|
||||||
|
if p.args[0] == 'dmesg':
|
||||||
|
continue
|
||||||
|
|
||||||
p.kill()
|
p.kill()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
Loading…
Reference in New Issue
Block a user