File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2727Subcommands:
2828 run, r Run binaries
2929 test, t Run tests
30+ nextest Run tests with nextest (requires cargo-nextest installed)
3031 setup Only perform automatic setup, but without asking questions (for getting a proper libstd)
3132
3233The 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) {
586587 } ;
587588 let subcommand = match & * subcommand {
588589 "setup" => MiriCommand :: Setup ,
589- "test" | "t" | "run" | "r" => MiriCommand :: Forward ( subcommand) ,
590- // Invalid command.
590+ "test" | "t" | "run" | "r" | "nextest" => MiriCommand :: Forward ( subcommand) ,
591591 _ =>
592592 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`."
594594 ) ) ,
595595 } ;
596596 let verbose = num_arg_flag ( "-v" ) ;
You can’t perform that action at this time.
0 commit comments