diff options
| author | Lieselotte <52315535+she3py@users.noreply.github.com> | 2025-04-18 15:02:22 +0200 |
|---|---|---|
| committer | Lieselotte <52315535+she3py@users.noreply.github.com> | 2025-04-18 15:02:22 +0200 |
| commit | 17b7d63fd787699dac3fffbf9930dc799291a5f2 (patch) | |
| tree | 94ec4ada15f8396e159336ef899370e2af0423da /tests/ui/runtime | |
| parent | 0d56e3eed1c5f3edea5cae6171e7a706ad792463 (diff) | |
| download | rust-17b7d63fd787699dac3fffbf9930dc799291a5f2.tar.gz rust-17b7d63fd787699dac3fffbf9930dc799291a5f2.zip | |
rtprintpanic: clarify that the error is aborting the process
Diffstat (limited to 'tests/ui/runtime')
| -rw-r--r-- | tests/ui/runtime/rt-explody-panic-payloads.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/runtime/rt-explody-panic-payloads.rs b/tests/ui/runtime/rt-explody-panic-payloads.rs index c177fd260ed..d564a26ca73 100644 --- a/tests/ui/runtime/rt-explody-panic-payloads.rs +++ b/tests/ui/runtime/rt-explody-panic-payloads.rs @@ -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)); } |
