Skip to content

Commit

Permalink
Make ui_test backtraces short by default
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Apr 16, 2024
1 parent fe18afe commit 4f75d67
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tools/compiletest/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,10 @@ impl TestProps {
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![],
Expand Down

0 comments on commit 4f75d67

Please sign in to comment.