Skip to content

Commit

Permalink
x.py test --test-args flag description enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
njasm committed Oct 23, 2020
1 parent 07a63e6 commit c3cbaf6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/bootstrap/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,13 @@ To learn more about a subcommand, run `./x.py <subcommand> -h`",
match subcommand.as_str() {
"test" | "t" => {
opts.optflag("", "no-fail-fast", "Run all tests regardless of failure");
opts.optmulti("", "test-args", "extra arguments", "ARGS");
opts.optmulti(
"",
"test-args",
"extra arguments to be passed for the test tool being used \
(e.g. libtest, compiletest or rustdoc)",
"ARGS",
);
opts.optmulti(
"",
"rustc-args",
Expand Down

0 comments on commit c3cbaf6

Please sign in to comment.