diff options
| author | Giles Cope <gilescope@gmail.com> | 2019-07-26 00:05:30 +0100 |
|---|---|---|
| committer | Giles Cope <gilescope@gmail.com> | 2019-07-26 06:16:40 +0100 |
| commit | 9d796ebb5b0823201b4ce325f55aa9c7706bda93 (patch) | |
| tree | a30e9dbc7effd323fc8aedf10128507b847603f9 /src | |
| parent | a7f28678bbf4e16893bb6a718e427504167a9494 (diff) | |
`run_quiet` outputs stdout/stderr when things go wrong.
(was `run` uses `run_silent` under the covers.)
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 26fd7585ab5..7d945e20622 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); } } |
