From: Eric Huss Date: Tue, 15 May 2018 05:02:34 +0000 (-0700) Subject: Ignore in libtest output. X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2^2~32^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1a715aaec97dd92abe7434cb99892f3f9b75274d;p=cargo.git Ignore in libtest output. rust-lang/rust#50387 is changing the output from libtest which affected a few Cargo tests. --- diff --git a/tests/testsuite/test.rs b/tests/testsuite/test.rs index c48dbf2bb..47ff91091 100644 --- a/tests/testsuite/test.rs +++ b/tests/testsuite/test.rs @@ -301,7 +301,7 @@ test test_hello ... FAILED failures: ---- test_hello stdout ---- -thread 'test_hello' panicked at 'assertion failed:[..]", +[..]thread 'test_hello' panicked at 'assertion failed:[..]", ) .with_stdout_contains("[..]`(left == right)`[..]") .with_stdout_contains("[..]left: `\"hello\"`,[..]") @@ -367,7 +367,7 @@ test test_hello ... FAILED failures: ---- test_hello stdout ---- -thread 'test_hello' panicked at 'assertion failed: false', \ +[..]thread 'test_hello' panicked at 'assertion failed: false', \ tests[/]footest.rs:4[..] ", ) @@ -413,7 +413,7 @@ test test_hello ... FAILED failures: ---- test_hello stdout ---- -thread 'test_hello' panicked at 'assertion failed: false', \ +[..]thread 'test_hello' panicked at 'assertion failed: false', \ src[/]lib.rs:4[..] ", )