Skip to content

Commit 4ac4f3d

Browse files
committed
Add test for -Z check-cfg-features with namespaced features
1 parent a864c81 commit 4ac4f3d

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

tests/testsuite/build.rs

+41
Original file line numberDiff line numberDiff line change
@@ -6071,3 +6071,44 @@ fn check_cfg_features_with_opt_deps() {
60716071
)
60726072
.run();
60736073
}
6074+
6075+
#[cfg_attr(windows, ignore)] // weird normalization issue with windows and cargo-test-support
6076+
#[cargo_test]
6077+
fn check_cfg_features_with_namespaced_features() {
6078+
if !is_nightly() {
6079+
// --check-cfg is a nightly only rustc command line
6080+
return;
6081+
}
6082+
6083+
let p = project()
6084+
.file(
6085+
"Cargo.toml",
6086+
r#"
6087+
[project]
6088+
name = "foo"
6089+
version = "0.1.0"
6090+
6091+
[dependencies]
6092+
bar = { path = "bar/", optional = true }
6093+
6094+
[features]
6095+
f_a = ["dep:bar"]
6096+
f_b = []
6097+
"#,
6098+
)
6099+
.file("src/main.rs", "fn main() {}")
6100+
.file("bar/Cargo.toml", &basic_manifest("bar", "0.1.0"))
6101+
.file("bar/src/lib.rs", "#[allow(dead_code)] fn bar() {}")
6102+
.build();
6103+
6104+
p.cargo("build -v -Z check-cfg-features")
6105+
.masquerade_as_nightly_cargo()
6106+
.with_stderr(
6107+
"\
6108+
[COMPILING] foo v0.1.0 [..]
6109+
[RUNNING] `rustc --crate-name foo [..] --check-cfg 'values(feature, \"f_a\", \"f_b\")' [..]
6110+
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
6111+
",
6112+
)
6113+
.run();
6114+
}

0 commit comments

Comments
 (0)