Skip to content

Commit 6f93fa7

Browse files
committedFeb 16, 2024
fix(test): Suggest -- for libtest arguments
We already do this so long as the argument doesn't look like a `cargo test` argument (e.g. `--show-output`) but `--ignored` looks like `--ignore-rust-version` do the the suggestion algorithms prefix checks. Before ``` error: unexpected argument '--ignored' found tip: a similar argument exists: '--ignore-rust-version' Usage: cargo test --ignore-rust-version [TESTNAME] [-- [ARGS]...] For more information, try '--help'. ``` After ``` error: unexpected argument '--ignored' found tip: a similar argument exists: '--ignore-rust-version' tip: to pass '--ignored' as a value, use '-- --ignored' Usage: cargo test --ignore-rust-version [TESTNAME] [-- [ARGS]...] For more information, try '--help'. ``` Fixes #12494
1 parent 57d14e4 commit 6f93fa7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cargo-test-support = { path = "crates/cargo-test-support" }
3535
cargo-util = { version = "0.2.6", path = "crates/cargo-util" }
3636
cargo-util-schemas = { version = "0.2.0", path = "crates/cargo-util-schemas" }
3737
cargo_metadata = "0.18.1"
38-
clap = "4.4.18"
38+
clap = "4.5.1"
3939
color-print = "0.3.5"
4040
core-foundation = { version = "0.9.4", features = ["mac_os_10_7_support"] }
4141
crates-io = { version = "0.40.0", path = "crates/crates-io" }

0 commit comments

Comments
 (0)