提交 ab21314c 编写于 作者: S Segev Finer

Disable backtrace tests on i686-pc-windows-gnu since it's broken by FPO

上级 1b4a6c86
......@@ -37,6 +37,7 @@
target_os = "ios",
target_os = "android",
all(target_os = "linux", target_arch = "arm"),
all(target_os = "windows", target_pointer_width = "32"),
target_os = "freebsd",
target_os = "dragonfly",
target_os = "bitrig",
......
......@@ -104,6 +104,10 @@ fn runtest(me: &str) {
}
fn main() {
if cfg!(windows) && cfg!(target_env = "gnu") && cfg!(target_pointer_width = "32") {
return
}
let args: Vec<String> = env::args().collect();
if args.len() >= 2 && args[1] == "fail" {
foo();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册