When stopping a test, kernel messages can be logged after the event loop is stopped. Capture them before closing the log. Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> --- tests/kmstest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/kmstest.py b/tests/kmstest.py index adb67c82c368..217d39221c90 100755 --- a/tests/kmstest.py +++ b/tests/kmstest.py @@ -119,6 +119,8 @@ class Logger(object): def close(self): if self.logfile: + # Capture the last kernel messages. + self.event() self.logfile.close() self.logfile = None -- Regards, Laurent Pinchart