-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate Abort instead of Resume terminators on nounwind ABIs. #18510 Signed-off-by: David Henningsson <[email protected]>
- Loading branch information
Showing
6 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// Since we mark some ABIs as "nounwind" to LLVM, we must make sure that | ||
// we never unwind through them. | ||
|
||
// ignore-emscripten no processes | ||
|
||
use std::{env, panic}; | ||
use std::io::prelude::*; | ||
use std::io; | ||
use std::process::{Command, Stdio}; | ||
|
||
extern "C" fn panic_in_ffi() { | ||
panic!("Test"); | ||
} | ||
|
||
fn test() { | ||
let _ = panic::catch_unwind(|| { panic_in_ffi(); }); | ||
// 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(); | ||
} | ||
|
||
let mut p = Command::new(&args[0]) | ||
.stdout(Stdio::piped()) | ||
.stdin(Stdio::piped()) | ||
.arg("test").spawn().unwrap(); | ||
assert!(!p.wait().unwrap().success()); | ||
} |