File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
Subcommands:
28
28
run, r Run binaries
29
29
test, t Run tests
30
+ nextest Run tests with nextest (requires cargo-nextest installed)
30
31
setup Only perform automatic setup, but without asking questions (for getting a proper libstd)
31
32
32
33
The cargo options are exactly the same as for `cargo run` and `cargo test`, respectively.
@@ -586,11 +587,10 @@ fn phase_cargo_miri(mut args: env::Args) {
586
587
} ;
587
588
let subcommand = match & * subcommand {
588
589
"setup" => MiriCommand :: Setup ,
589
- "test" | "t" | "run" | "r" => MiriCommand :: Forward ( subcommand) ,
590
- // Invalid command.
590
+ "test" | "t" | "run" | "r" | "nextest" => MiriCommand :: Forward ( subcommand) ,
591
591
_ =>
592
592
show_error ( format ! (
593
- "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`."
593
+ "`cargo miri` supports the following subcommands: `run`, `test`, `nextest`, and `setup`."
594
594
) ) ,
595
595
} ;
596
596
let verbose = num_arg_flag ( "-v" ) ;
You can’t perform that action at this time.
0 commit comments