From 9d796ebb5b0823201b4ce325f55aa9c7706bda93 Mon Sep 17 00:00:00 2001 From: Giles Cope Date: Fri, 26 Jul 2019 00:05:30 +0100 Subject: [PATCH] `run_quiet` outputs stdout/stderr when things go wrong. (was `run` uses `run_silent` under the covers.) --- src/bootstrap/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 26fd7585ab5d1..7d945e20622f8 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1493,7 +1493,7 @@ impl Step for ErrorIndex { builder.info(&format!("Testing error-index stage{}", compiler.stage)); let _time = util::timeit(&builder); - builder.run(&mut tool); + builder.run_quiet(&mut tool); markdown_test(builder, compiler, &output); } }