Skip to content

Commit 10776bd

Browse files
committed
Auto merge of #7084 - scruffystuffs:invoke-feature-multi, r=alexcrichton
Add support for multiple --features options Closes #7076 Pretty straightforward, but I added an extra test to make sure that space-separated features work in conjunction with multiple --features options.
2 parents f227776 + 51c26b6 commit 10776bd

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

src/cargo/util/command_prelude.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ pub trait AppExt: Sized {
100100

101101
fn arg_features(self) -> Self {
102102
self._arg(
103-
opt("features", "Space-separated list of features to activate").value_name("FEATURES"),
103+
opt("features", "Space-separated list of features to activate")
104+
.multiple(true)
105+
.value_name("FEATURES"),
104106
)
105107
._arg(opt("all-features", "Activate all available features"))
106108
._arg(opt(

tests/testsuite/features.rs

+57
Original file line numberDiff line numberDiff line change
@@ -1899,3 +1899,60 @@ fn no_feature_for_non_optional_dep() {
18991899

19001900
p.cargo("build --features bar/a").run();
19011901
}
1902+
1903+
#[cargo_test]
1904+
fn features_option_given_twice() {
1905+
let p = project()
1906+
.file(
1907+
"Cargo.toml",
1908+
r#"
1909+
[project]
1910+
name = "foo"
1911+
version = "0.0.1"
1912+
authors = []
1913+
1914+
[features]
1915+
a = []
1916+
b = []
1917+
"#,
1918+
)
1919+
.file(
1920+
"src/main.rs",
1921+
r#"
1922+
#[cfg(all(feature = "a", feature = "b"))]
1923+
fn main() {}
1924+
"#,
1925+
)
1926+
.build();
1927+
1928+
p.cargo("build --features a --features b").run();
1929+
}
1930+
1931+
#[cargo_test]
1932+
fn multi_multi_features() {
1933+
let p = project()
1934+
.file(
1935+
"Cargo.toml",
1936+
r#"
1937+
[project]
1938+
name = "foo"
1939+
version = "0.0.1"
1940+
authors = []
1941+
1942+
[features]
1943+
a = []
1944+
b = []
1945+
c = []
1946+
"#,
1947+
)
1948+
.file(
1949+
"src/main.rs",
1950+
r#"
1951+
#[cfg(all(feature = "a", feature = "b", feature = "c"))]
1952+
fn main() {}
1953+
"#,
1954+
)
1955+
.build();
1956+
1957+
p.cargo("build --features a --features").arg("b c").run();
1958+
}

0 commit comments

Comments
 (0)