From 2095229958eef511b2882e3548b3917f0dc7e256 Mon Sep 17 00:00:00 2001 From: Lili Deng Date: Fri, 24 Nov 2023 15:22:22 +0800 Subject: [PATCH] add one more panic pattern --- lisa/features/serial_console.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisa/features/serial_console.py b/lisa/features/serial_console.py index 0b3792f5ea..b8d89d326a 100644 --- a/lisa/features/serial_console.py +++ b/lisa/features/serial_console.py @@ -24,6 +24,8 @@ class SerialConsole(Feature): re.compile(r"^(.*RIP:.*)$", re.MULTILINE), re.compile(r"^(.*grub>.*)$", re.MULTILINE), re.compile(r"^The operating system has halted.$", re.MULTILINE), + # Synchronous Exception at 0x000000003FD04000 + re.compile(r"^(.*Synchronous Exception at.*)$", re.MULTILINE), ] # ignore some return lines, which shouldn't be a panic line.