Loosen possibly bogus constraints in backtrace test
This commit is contained in:
parent
243bfc277e
commit
86992b6437
1 changed files with 3 additions and 1 deletions
|
|
@ -57,7 +57,9 @@ fn runtest(me: &str) {
|
|||
let out = p.wait_with_output().unwrap();
|
||||
assert!(!out.status.success());
|
||||
let s = str::from_utf8(out.error.as_slice()).unwrap();
|
||||
assert!(s.contains("stack backtrace") && s.contains("double::h"),
|
||||
// loosened the following from double::h to double:: due to
|
||||
// spurious failures on mac, 32bit, optimized
|
||||
assert!(s.contains("stack backtrace") && s.contains("double::"),
|
||||
"bad output3: {}", s);
|
||||
|
||||
// Make sure a stack trace isn't printed too many times
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue