File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -868,6 +868,7 @@ impl Config {
868
868
869
869
// Set flags.
870
870
config. paths = std:: mem:: take ( & mut flags. paths ) ;
871
+ config. free_args = std:: mem:: take ( & mut flags. free_args ) ;
871
872
config. exclude = flags. exclude . into_iter ( ) . map ( |path| TaskPath :: parse ( path) ) . collect ( ) ;
872
873
config. include_default_paths = flags. include_default_paths ;
873
874
config. rustc_error_format = flags. error_format ;
Original file line number Diff line number Diff line change @@ -459,8 +459,7 @@ impl Subcommand {
459
459
}
460
460
}
461
461
462
- pub fn only_modified (
463
- & self ) -> bool {
462
+ pub fn only_modified ( & self ) -> bool {
464
463
match * self {
465
464
Subcommand :: Test { only_modified, .. } => only_modified,
466
465
_ => false ,
Original file line number Diff line number Diff line change @@ -184,7 +184,6 @@ impl Step for Miri {
184
184
miri. arg ( "--" ) . arg ( "--target" ) . arg ( target. rustc_target_arg ( ) ) ;
185
185
miri. args ( builder. config . cmd . args ( ) ) ;
186
186
miri. args ( & builder. config . free_args ) ;
187
-
188
187
// miri tests need to know about the stage sysroot
189
188
miri. env ( "MIRI_SYSROOT" , & miri_sysroot) ;
190
189
You can’t perform that action at this time.
0 commit comments