Skip to content

Commit 8882e42

Browse files
authored
Rollup merge of #63002 - gilescope:better-build-diagnostics, r=Mark-Simulacrum
error_index_generator should output stdout/stderr when it panics. **bootstrap change** Call error_index_generator tool using run_quiet which will additionally print std out and std err of the command when it returns an error. (was `run` uses `run_silent` under the covers.) Why: PR #62871 is hitting a build error but the panic isn't getting shown so its unclear what the problem is.
2 parents 571a965 + 9d796eb commit 8882e42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bootstrap/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ impl Step for ErrorIndex {
14931493

14941494
builder.info(&format!("Testing error-index stage{}", compiler.stage));
14951495
let _time = util::timeit(&builder);
1496-
builder.run(&mut tool);
1496+
builder.run_quiet(&mut tool);
14971497
markdown_test(builder, compiler, &output);
14981498
}
14991499
}

0 commit comments

Comments
 (0)