Skip to content

Commit ab21314

Browse files
committedJan 28, 2017
Disable backtrace tests on i686-pc-windows-gnu since it's broken by FPO
1 parent 1b4a6c8 commit ab21314

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
 

‎src/test/run-pass/backtrace-debuginfo.rs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ macro_rules! dump_and_die {
3737
target_os = "ios",
3838
target_os = "android",
3939
all(target_os = "linux", target_arch = "arm"),
40+
all(target_os = "windows", target_pointer_width = "32"),
4041
target_os = "freebsd",
4142
target_os = "dragonfly",
4243
target_os = "bitrig",

‎src/test/run-pass/backtrace.rs

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ fn runtest(me: &str) {
104104
}
105105

106106
fn main() {
107+
if cfg!(windows) && cfg!(target_env = "gnu") && cfg!(target_pointer_width = "32") {
108+
return
109+
}
110+
107111
let args: Vec<String> = env::args().collect();
108112
if args.len() >= 2 && args[1] == "fail" {
109113
foo();

0 commit comments

Comments
 (0)
Please sign in to comment.