-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
35 additions
and
15 deletions.
There are no files selected for viewing
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This test was created to check that compilation and execution still works | ||
// after the addition of a new feature, in #65646: the ability to unwind panics | ||
// and exceptions back and forth between Rust and C++. Should this feature be broken, | ||
// the test should fail. | ||
// See https://github.com/rust-lang/rust/pull/65646 | ||
|
||
//@ needs-unwind | ||
// Reason: this test exercises panic unwinding | ||
//@ ignore-cross-compile | ||
// Reason: the compiled binary is executed | ||
|
||
use run_make_support::{build_native_static_lib_cxx, run, rustc}; | ||
|
||
fn main() { | ||
build_native_static_lib_cxx("foo"); | ||
rustc().input("foo.rs").arg("-lfoo").extra_rs_cxx_flags().run(); | ||
run("foo"); | ||
} |