Rollup merge of #78243 - njasm:patch_test_args_description, r=jyn514
--test-args flag description tiny enhancement/clarification for the help description of the `--test-args` option from `x.py test` subcommand. Edit: ...as discussed in zulip [here](https://rust-lang.zulipchat.com/#narrow/stream/122651-general/topic/x.2Epy.20run.20single.20unit.20test.3F/near/214107842)
This commit is contained in:
commit
6b2ed99a56
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user