mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
cf6d6050f7
* The WASI targets deal with the `main` symbol a bit differently than native so some `codegen` and `assembly` tests have been ignored. * All `ignore-emscripten` directives have been updated to `ignore-wasm32` to be more clear that all wasm targets are ignored and it's not just Emscripten. * Most `ignore-wasm32-bare` directives are now gone. * Some ignore directives for wasm were switched to `needs-unwind` instead. * Many `ignore-wasm32*` directives are removed as the tests work with WASI as opposed to `wasm32-unknown-unknown`.
75 lines
2.5 KiB
Rust
75 lines
2.5 KiB
Rust
//@ run-pass
|
|
//@ ignore-android FIXME #17520
|
|
//@ ignore-wasm32 spawning processes is not supported
|
|
//@ ignore-openbsd no support for libbacktrace without filename
|
|
//@ ignore-sgx no processes
|
|
//@ ignore-msvc see #62897 and `backtrace-debuginfo.rs` test
|
|
//@ ignore-fuchsia Backtraces not symbolized
|
|
//@ compile-flags:-g
|
|
//@ compile-flags:-Cstrip=none
|
|
|
|
use std::env;
|
|
use std::process::Command;
|
|
use std::str;
|
|
|
|
fn main() {
|
|
let args: Vec<String> = env::args().collect();
|
|
if args.len() >= 2 && args[1] == "force" {
|
|
println!("stack backtrace:\n{}", std::backtrace::Backtrace::force_capture());
|
|
} else if args.len() >= 2 {
|
|
println!("stack backtrace:\n{}", std::backtrace::Backtrace::capture());
|
|
} else {
|
|
runtest(&args[0]);
|
|
println!("test ok");
|
|
}
|
|
}
|
|
|
|
fn runtest(me: &str) {
|
|
env::remove_var("RUST_BACKTRACE");
|
|
env::remove_var("RUST_LIB_BACKTRACE");
|
|
|
|
let p = Command::new(me).arg("a").env("RUST_BACKTRACE", "1").output().unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("stack backtrace:\n"));
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("backtrace::main"));
|
|
|
|
let p = Command::new(me).arg("a").env("RUST_BACKTRACE", "0").output().unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("disabled backtrace\n"));
|
|
|
|
let p = Command::new(me).arg("a").output().unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("disabled backtrace\n"));
|
|
|
|
let p = Command::new(me)
|
|
.arg("a")
|
|
.env("RUST_LIB_BACKTRACE", "1")
|
|
.env("RUST_BACKTRACE", "1")
|
|
.output()
|
|
.unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("stack backtrace:\n"));
|
|
|
|
let p = Command::new(me)
|
|
.arg("a")
|
|
.env("RUST_LIB_BACKTRACE", "0")
|
|
.env("RUST_BACKTRACE", "1")
|
|
.output()
|
|
.unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("disabled backtrace\n"));
|
|
|
|
let p = Command::new(me)
|
|
.arg("force")
|
|
.env("RUST_LIB_BACKTRACE", "0")
|
|
.env("RUST_BACKTRACE", "0")
|
|
.output()
|
|
.unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("stack backtrace:\n"));
|
|
|
|
let p = Command::new(me).arg("force").output().unwrap();
|
|
assert!(p.status.success());
|
|
assert!(String::from_utf8_lossy(&p.stdout).contains("stack backtrace:\n"));
|
|
}
|