We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
eprintln
println
1 parent 903d297 commit d5ac101Copy full SHA for d5ac101
src/tools/compiletest/src/lib.rs
@@ -508,7 +508,9 @@ pub fn run_tests(config: Arc<Config>) {
508
// easy to miss which tests failed, and as such fail to reproduce
509
// the failure locally.
510
511
- eprintln!(
+ // Note: this needs to output to stderr because that's where libtest
512
+ // also outputs the dots to.
513
+ println!(
514
"Some tests failed in compiletest suite={}{} mode={} host={} target={}",
515
config.suite,
516
config
0 commit comments