mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
25 lines
776 B
Rust
25 lines
776 B
Rust
// Regression test for #47429: short backtraces were not terminating correctly
|
|
|
|
// compile-flags: -O
|
|
// compile-flags:-Cstrip=none
|
|
// run-fail
|
|
// check-run-results
|
|
// exec-env:RUST_BACKTRACE=1
|
|
|
|
// ignore-msvc see #62897 and `backtrace-debuginfo.rs` test
|
|
// ignore-android FIXME #17520
|
|
// ignore-openbsd no support for libbacktrace without filename
|
|
// ignore-wasm no panic or subprocess support
|
|
// ignore-emscripten no panic or subprocess support
|
|
// ignore-sgx no subprocess support
|
|
// ignore-fuchsia Backtraces not symbolized
|
|
|
|
// NOTE(eddyb) output differs between symbol mangling schemes
|
|
// revisions: legacy v0
|
|
// [legacy] compile-flags: -Zunstable-options -Csymbol-mangling-version=legacy
|
|
// [v0] compile-flags: -Csymbol-mangling-version=v0
|
|
|
|
fn main() {
|
|
panic!()
|
|
}
|