From 1a715aaec97dd92abe7434cb99892f3f9b75274d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 14 May 2018 22:02:34 -0700 Subject: [PATCH] Ignore in libtest output. rust-lang/rust#50387 is changing the output from libtest which affected a few Cargo tests. --- tests/testsuite/test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testsuite/test.rs b/tests/testsuite/test.rs index c48dbf2bb2c..47ff910919c 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[..] ", )