From b342dfd8d5ac940db80f55db36d47f174d1ad633 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 31 Mar 2022 16:16:34 -0700 Subject: [PATCH] test-runner: don't kill dmesg after individual tests This prevents any kernel logging from being available after the first test is finished. --- tools/run-tests | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/run-tests b/tools/run-tests index 478e215d..060aba39 100755 --- a/tools/run-tests +++ b/tools/run-tests @@ -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