File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/bootstrap/src/core/config Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -392,9 +392,6 @@ pub enum Subcommand {
392
392
/// extra arguments to be passed for the test tool being used
393
393
/// (e.g. libtest, compiletest or rustdoc)
394
394
test_args : Vec < String > ,
395
- /// extra options to pass the compiler when running tests
396
- #[ arg( long, value_name = "ARGS" , allow_hyphen_values( true ) ) ]
397
- rustc_args : Vec < String > ,
398
395
#[ arg( long) ]
399
396
/// do not run doc tests
400
397
no_doc : bool ,
@@ -501,7 +498,7 @@ impl Subcommand {
501
498
502
499
pub fn rustc_args ( & self ) -> Vec < & str > {
503
500
match * self {
504
- Subcommand :: Test { ref rustc_args, .. } | Subcommand :: Miri { ref rustc_args , .. } => {
501
+ Subcommand :: Test { ref rustc_args, .. } => {
505
502
rustc_args. iter ( ) . flat_map ( |s| s. split_whitespace ( ) ) . collect ( )
506
503
}
507
504
_ => vec ! [ ] ,
You can’t perform that action at this time.
0 commit comments