Skip to content

Commit

Permalink
add one more panic pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliDeng committed Nov 25, 2023
1 parent 84fd0fe commit 2095229
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lisa/features/serial_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2095229

Please sign in to comment.