Skip to content

Commit 7eb6b23

Browse files
committed
fix invalid PANIC matching
1 parent 980eaeb commit 7eb6b23

File tree

1 file changed

+1
-1
lines changed
  • test/kernel/integration/exception

1 file changed

+1
-1
lines changed

test/kernel/integration/exception/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def is_good(line):
1717
if (counter == expected):
1818
vm.exit(0, "All tests passed")
1919

20-
vm.on_output("\\x15\\x07\\t\*\*\*\* PANIC \*\*\*\*", is_good)
20+
vm.on_output(b"\x15\x07\t**** PANIC ****", is_good)
2121
vm.on_output("Divide-by-zero Error", is_good)
2222

2323
vm.on_output("__cpu_exception", is_good)

0 commit comments

Comments
 (0)