File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -262,6 +262,7 @@ fn parse_opts_impl(matches: getopts::Matches) -> OptRes {
262
262
// Unstable flags
263
263
let force_run_in_process = unstable_optflag ! ( matches, allow_unstable, "force-run-in-process" ) ;
264
264
let exclude_should_panic = unstable_optflag ! ( matches, allow_unstable, "exclude-should-panic" ) ;
265
+ let fail_fast = unstable_optflag ! ( matches, allow_unstable, "fail-fast" ) ;
265
266
let time_options = get_time_options ( & matches, allow_unstable) ?;
266
267
let shuffle = get_shuffle ( & matches, allow_unstable) ?;
267
268
let shuffle_seed = get_shuffle_seed ( & matches, allow_unstable) ?;
@@ -271,7 +272,6 @@ fn parse_opts_impl(matches: getopts::Matches) -> OptRes {
271
272
let exact = matches. opt_present ( "exact" ) ;
272
273
let list = matches. opt_present ( "list" ) ;
273
274
let skip = matches. opt_strs ( "skip" ) ;
274
- let fail_fast = matches. opt_present ( "fail-fast" ) ;
275
275
276
276
let bench_benchmarks = matches. opt_present ( "bench" ) ;
277
277
let run_tests = !bench_benchmarks || matches. opt_present ( "test" ) ;
You can’t perform that action at this time.
0 commit comments