@@ -128,7 +128,6 @@ pub struct Config {
128128 pub low_priority : bool ,
129129 pub channel : String ,
130130 pub verbose_tests : bool ,
131- pub test_miri : bool ,
132131 pub save_toolstates : Option < PathBuf > ,
133132 pub print_step_timings : bool ,
134133 pub missing_tools : bool ,
@@ -315,7 +314,6 @@ struct Rust {
315314 debug : Option < bool > ,
316315 dist_src : Option < bool > ,
317316 verbose_tests : Option < bool > ,
318- test_miri : Option < bool > ,
319317 incremental : Option < bool > ,
320318 save_toolstates : Option < String > ,
321319 codegen_backends : Option < Vec < String > > ,
@@ -375,7 +373,6 @@ impl Config {
375373 config. codegen_tests = true ;
376374 config. ignore_git = false ;
377375 config. rust_dist_src = true ;
378- config. test_miri = false ;
379376 config. rust_codegen_backends = vec ! [ INTERNER . intern_str( "llvm" ) ] ;
380377 config. rust_codegen_backends_dir = "codegen-backends" . to_owned ( ) ;
381378 config. deny_warnings = true ;
@@ -557,7 +554,6 @@ impl Config {
557554 set ( & mut config. channel , rust. channel . clone ( ) ) ;
558555 set ( & mut config. rust_dist_src , rust. dist_src ) ;
559556 set ( & mut config. verbose_tests , rust. verbose_tests ) ;
560- set ( & mut config. test_miri , rust. test_miri ) ;
561557 // in the case "false" is set explicitly, do not overwrite the command line args
562558 if let Some ( true ) = rust. incremental {
563559 config. incremental = true ;
0 commit comments