@@ -125,7 +125,7 @@ pub struct Config {
125125 // misc
126126 pub low_priority : bool ,
127127 pub channel : String ,
128- pub quiet_tests : bool ,
128+ pub verbose_tests : bool ,
129129 pub test_miri : bool ,
130130 pub save_toolstates : Option < PathBuf > ,
131131 pub print_step_timings : bool ,
@@ -301,7 +301,7 @@ struct Rust {
301301 ignore_git : Option < bool > ,
302302 debug : Option < bool > ,
303303 dist_src : Option < bool > ,
304- quiet_tests : Option < bool > ,
304+ verbose_tests : Option < bool > ,
305305 test_miri : Option < bool > ,
306306 incremental : Option < bool > ,
307307 save_toolstates : Option < String > ,
@@ -347,7 +347,6 @@ impl Config {
347347 config. backtrace = true ;
348348 config. rust_optimize = true ;
349349 config. rust_optimize_tests = true ;
350- config. quiet_tests = true ;
351350 config. submodules = true ;
352351 config. fast_submodules = true ;
353352 config. docs = true ;
@@ -529,7 +528,7 @@ impl Config {
529528 set ( & mut config. backtrace , rust. backtrace ) ;
530529 set ( & mut config. channel , rust. channel . clone ( ) ) ;
531530 set ( & mut config. rust_dist_src , rust. dist_src ) ;
532- set ( & mut config. quiet_tests , rust. quiet_tests ) ;
531+ set ( & mut config. verbose_tests , rust. verbose_tests ) ;
533532 set ( & mut config. test_miri , rust. test_miri ) ;
534533 // in the case "false" is set explicitly, do not overwrite the command line args
535534 if let Some ( true ) = rust. incremental {
0 commit comments