Skip to content

Commit d601e9d

Browse files
committed
Auto merge of #5535 - ehuss:ignore-test-tab, r=alexcrichton
Ignore <tab> in libtest output. rust-lang/rust#50387 is changing the output from libtest which affected a few Cargo tests.
2 parents af98105 + 1a715aa commit d601e9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/testsuite/test.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ test test_hello ... FAILED
301301
failures:
302302
303303
---- test_hello stdout ----
304-
<tab>thread 'test_hello' panicked at 'assertion failed:[..]",
304+
[..]thread 'test_hello' panicked at 'assertion failed:[..]",
305305
)
306306
.with_stdout_contains("[..]`(left == right)`[..]")
307307
.with_stdout_contains("[..]left: `\"hello\"`,[..]")
@@ -367,7 +367,7 @@ test test_hello ... FAILED
367367
failures:
368368
369369
---- test_hello stdout ----
370-
<tab>thread 'test_hello' panicked at 'assertion failed: false', \
370+
[..]thread 'test_hello' panicked at 'assertion failed: false', \
371371
tests[/]footest.rs:4[..]
372372
",
373373
)
@@ -413,7 +413,7 @@ test test_hello ... FAILED
413413
failures:
414414
415415
---- test_hello stdout ----
416-
<tab>thread 'test_hello' panicked at 'assertion failed: false', \
416+
[..]thread 'test_hello' panicked at 'assertion failed: false', \
417417
src[/]lib.rs:4[..]
418418
",
419419
)

0 commit comments

Comments
 (0)