@@ -83,7 +83,12 @@ pub fn parse_config(args: Vec<String>) -> Config {
83
83
. optopt ( "" , "run" , "whether to execute run-* tests" , "auto | always | never" )
84
84
. optflag ( "" , "ignored" , "run tests marked as ignored" )
85
85
. optflag ( "" , "with-debug-assertions" , "whether to run tests with `ignore-debug` header" )
86
- . optmulti ( "" , "skip" , "skip tests matching SUBSTRING. Can be passed multiple times" , "SUBSTRING" )
86
+ . optmulti (
87
+ "" ,
88
+ "skip" ,
89
+ "skip tests matching SUBSTRING. Can be passed multiple times" ,
90
+ "SUBSTRING" ,
91
+ )
87
92
. optflag ( "" , "exact" , "filters match exactly" )
88
93
. optopt (
89
94
"" ,
@@ -146,7 +151,11 @@ pub fn parse_config(args: Vec<String>) -> Config {
146
151
. optflag ( "" , "profiler-support" , "is the profiler runtime enabled for this target" )
147
152
. optflag ( "h" , "help" , "show this message" )
148
153
. reqopt ( "" , "channel" , "current Rust channel" , "CHANNEL" )
149
- . optflag ( "" , "git-hash" , "run tests which rely on commit version being compiled into the binaries" )
154
+ . optflag (
155
+ "" ,
156
+ "git-hash" ,
157
+ "run tests which rely on commit version being compiled into the binaries" ,
158
+ )
150
159
. optopt ( "" , "edition" , "default Rust edition" , "EDITION" )
151
160
. reqopt ( "" , "git-repository" , "name of the git repository" , "ORG/REPO" )
152
161
. reqopt ( "" , "nightly-branch" , "name of the git branch for nightly" , "BRANCH" ) ;
0 commit comments