summaryrefslogtreecommitdiffstats
path: root/tests/ui/runtime/rt-explody-panic-payloads.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/runtime/rt-explody-panic-payloads.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/runtime/rt-explody-panic-payloads.rs')
-rw-r--r--tests/ui/runtime/rt-explody-panic-payloads.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/ui/runtime/rt-explody-panic-payloads.rs b/tests/ui/runtime/rt-explody-panic-payloads.rs
new file mode 100644
index 000000000..755d3df42
--- /dev/null
+++ b/tests/ui/runtime/rt-explody-panic-payloads.rs
@@ -0,0 +1,33 @@
+// run-pass
+// needs-unwind
+// ignore-emscripten no processes
+// ignore-sgx no processes
+
+use std::env;
+use std::process::Command;
+
+struct Bomb;
+
+impl Drop for Bomb {
+ fn drop(&mut self) {
+ std::panic::panic_any(Bomb);
+ }
+}
+
+fn main() {
+ let args = env::args().collect::<Vec<_>>();
+ let output = match &args[..] {
+ [me] => Command::new(&me).arg("plant the").output(),
+ [..] => std::panic::panic_any(Bomb),
+ }.expect("running the command should have succeeded");
+ println!("{:#?}", output);
+ let stderr = std::str::from_utf8(&output.stderr);
+ assert!(stderr
+ .map(|v| {
+ // When running inside QEMU user-mode emulation, there will be an extra message printed
+ // 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") })
+ .unwrap_or(false));
+}