If, even after reaching userspace, we see a kernel panic, report an
error. (I might revert this change if it causes problems.)
Fixes: https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/issues/1720
cat "$test_output"
fi
+# Check if there was a kernel panic. Note that oops=panic is set
+# which will force a reboot for any oops condition.
+if grep -sq "Kernel panic - not syncing" "$test_output"; then
+ cat "$test_output"
+ echo "$0: error: test $kernel on $qemu: kernel panic seen"
+ rm "$test_output"
+ exit 1
+fi
+
# Verify that userspace was reached.
if ! grep -sq "initrd started up OK" "$test_output"; then
cat "$test_output"