From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/runtime/rt-explody-panic-payloads.rs | 33 ------------------------ 1 file changed, 33 deletions(-) delete mode 100644 src/test/ui/runtime/rt-explody-panic-payloads.rs (limited to 'src/test/ui/runtime/rt-explody-panic-payloads.rs') diff --git a/src/test/ui/runtime/rt-explody-panic-payloads.rs b/src/test/ui/runtime/rt-explody-panic-payloads.rs deleted file mode 100644 index 755d3df42..000000000 --- a/src/test/ui/runtime/rt-explody-panic-payloads.rs +++ /dev/null @@ -1,33 +0,0 @@ -// 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::>(); - 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)); -} -- cgit v1.2.3