rtprintpanic: clarify that the error is aborting the process

This commit is contained in:
Lieselotte 2025-04-18 15:02:22 +02:00
parent 0d56e3eed1
commit 17b7d63fd7
No known key found for this signature in database
GPG key ID: 68A9A951C7E1F283
4 changed files with 4 additions and 4 deletions

View file

@ -27,6 +27,6 @@ fn main() {
// by QEMU in the stderr whenever a core dump happens. Remove it before the check.
v.strip_suffix("qemu: uncaught target signal 6 (Aborted) - core dumped\n").unwrap_or(v)
})
.map(|v| { v.ends_with("fatal runtime error: drop of the panic payload panicked\n") })
.map(|v| v.ends_with("fatal runtime error: drop of the panic payload panicked, aborting\n"))
.unwrap_or(false));
}