We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 243bfc2 commit 86992b6Copy full SHA for 86992b6
src/test/run-pass/backtrace.rs
@@ -57,7 +57,9 @@ fn runtest(me: &str) {
57
let out = p.wait_with_output().unwrap();
58
assert!(!out.status.success());
59
let s = str::from_utf8(out.error.as_slice()).unwrap();
60
- assert!(s.contains("stack backtrace") && s.contains("double::h"),
+ // loosened the following from double::h to double:: due to
61
+ // spurious failures on mac, 32bit, optimized
62
+ assert!(s.contains("stack backtrace") && s.contains("double::"),
63
"bad output3: {}", s);
64
65
// Make sure a stack trace isn't printed too many times
0 commit comments