Make ui_test backtraces short by default

This commit is contained in:
Oli Scherer 2024-04-09 10:07:56 +00:00
parent fe18afe48c
commit 4f75d67b6f

View File

@ -265,7 +265,10 @@ pub fn new() -> Self {
aux_bins: vec![],
aux_crates: vec![],
revisions: vec![],
rustc_env: vec![("RUSTC_ICE".to_string(), "0".to_string())],
rustc_env: vec![
("RUSTC_ICE".to_string(), "0".to_string()),
("RUST_BACKTRACE".to_string(), "short".to_string()),
],
unset_rustc_env: vec![("RUSTC_LOG_COLOR".to_string())],
exec_env: vec![],
unset_exec_env: vec![],