Skip to content

Commit d5ac101

Browse files
committed
compiletest: change a eprintln back to println
1 parent 903d297 commit d5ac101

File tree

1 file changed

+3
-1
lines changed
  • src/tools/compiletest/src

1 file changed

+3
-1
lines changed

src/tools/compiletest/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,9 @@ pub fn run_tests(config: Arc<Config>) {
508508
// easy to miss which tests failed, and as such fail to reproduce
509509
// the failure locally.
510510

511-
eprintln!(
511+
// Note: this needs to output to stderr because that's where libtest
512+
// also outputs the dots to.
513+
println!(
512514
"Some tests failed in compiletest suite={}{} mode={} host={} target={}",
513515
config.suite,
514516
config

0 commit comments

Comments
 (0)