test unwind(abort) with Rust ABI
This commit is contained in:
parent
a0106527c6
commit
df9335120b
1 changed files with 27 additions and 3 deletions
|
@ -14,11 +14,16 @@ use std::io::prelude::*;
|
|||
use std::io;
|
||||
use std::process::{Command, Stdio};
|
||||
|
||||
#[unwind(aborts)] // FIXME(#58794)
|
||||
#[unwind(aborts)] // FIXME(#58794) should work even without the attribute
|
||||
extern "C" fn panic_in_ffi() {
|
||||
panic!("Test");
|
||||
}
|
||||
|
||||
#[unwind(aborts)]
|
||||
extern "Rust" fn panic_in_rust_abi() {
|
||||
panic!("TestRust");
|
||||
}
|
||||
|
||||
fn test() {
|
||||
let _ = panic::catch_unwind(|| { panic_in_ffi(); });
|
||||
// The process should have aborted by now.
|
||||
|
@ -26,15 +31,34 @@ fn test() {
|
|||
let _ = io::stdout().flush();
|
||||
}
|
||||
|
||||
fn testrust() {
|
||||
let _ = panic::catch_unwind(|| { panic_in_rust_abi(); });
|
||||
// The process should have aborted by now.
|
||||
io::stdout().write(b"This should never be printed.\n");
|
||||
let _ = io::stdout().flush();
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let args: Vec<String> = env::args().collect();
|
||||
if args.len() > 1 && args[1] == "test" {
|
||||
return test();
|
||||
if args.len() > 1 {
|
||||
// This is inside the self-executed command.
|
||||
match &*args[1] {
|
||||
"test" => return test(),
|
||||
"testrust" => return testrust(),
|
||||
_ => panic!("bad test"),
|
||||
}
|
||||
}
|
||||
|
||||
// These end up calling the self-execution branches above.
|
||||
let mut p = Command::new(&args[0])
|
||||
.stdout(Stdio::piped())
|
||||
.stdin(Stdio::piped())
|
||||
.arg("test").spawn().unwrap();
|
||||
assert!(!p.wait().unwrap().success());
|
||||
|
||||
let mut p = Command::new(&args[0])
|
||||
.stdout(Stdio::piped())
|
||||
.stdin(Stdio::piped())
|
||||
.arg("testrust").spawn().unwrap();
|
||||
assert!(!p.wait().unwrap().success());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue