Skip to content

Commit 69a27cd

Browse files
committed
Make fail-fast unstable
1 parent 216b5d6 commit 69a27cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ fn parse_opts_impl(matches: getopts::Matches) -> OptRes {
262262
// Unstable flags
263263
let force_run_in_process = unstable_optflag!(matches, allow_unstable, "force-run-in-process");
264264
let exclude_should_panic = unstable_optflag!(matches, allow_unstable, "exclude-should-panic");
265+
let fail_fast = unstable_optflag!(matches, allow_unstable, "fail-fast");
265266
let time_options = get_time_options(&matches, allow_unstable)?;
266267
let shuffle = get_shuffle(&matches, allow_unstable)?;
267268
let shuffle_seed = get_shuffle_seed(&matches, allow_unstable)?;
@@ -271,7 +272,6 @@ fn parse_opts_impl(matches: getopts::Matches) -> OptRes {
271272
let exact = matches.opt_present("exact");
272273
let list = matches.opt_present("list");
273274
let skip = matches.opt_strs("skip");
274-
let fail_fast = matches.opt_present("fail-fast");
275275

276276
let bench_benchmarks = matches.opt_present("bench");
277277
let run_tests = !bench_benchmarks || matches.opt_present("test");

0 commit comments

Comments
 (0)