run_quiet outputs stdout/stderr when things go wrong.

(was `run` uses `run_silent` under the covers.)
This commit is contained in:
Giles Cope 2019-07-26 00:05:30 +01:00
parent a7f28678bb
commit 9d796ebb5b

View file

@ -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);
}
}