Skip to content

Commit

Permalink
Auto merge of #11342 - weihanglo:issue/11330-new-test, r=ehuss
Browse files Browse the repository at this point in the history
test(features2): test to prevent regressing of optional host deps of dep
  • Loading branch information
bors committed Nov 7, 2022
2 parents df56877 + e295a10 commit 0a979d3
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions tests/testsuite/features2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2472,3 +2472,74 @@ fn all_features_merges_with_features() {
.with_stdout("it works")
.run();
}

#[cargo_test]
fn dep_with_optional_host_deps_activated() {
// To prevent regression like rust-lang/cargo#11330
let p = project()
.file(
"Cargo.toml",
r#"
[package]
name = "foo"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { path = "serde", features = ["derive", "build"] }
"#,
)
.file("src/lib.rs", "")
.file(
"serde/Cargo.toml",
r#"
[package]
name = "serde"
version = "0.1.0"
edition = "2021"
[dependencies]
serde_derive = { path = "../serde_derive", optional = true }
[build-dependencies]
serde_build = { path = "../serde_build", optional = true }
[features]
derive = ["dep:serde_derive"]
build = ["dep:serde_build"]
"#,
)
.file("serde/src/lib.rs", "")
.file("serde/build.rs", "fn main() {}")
.file(
"serde_derive/Cargo.toml",
r#"
[package]
name = "serde_derive"
version = "0.1.0"
edition = "2021"
[lib]
proc-macro = true
"#,
)
.file("serde_derive/src/lib.rs", "")
.file(
"serde_build/Cargo.toml",
&basic_manifest("serde_build", "0.1.0"),
)
.file("serde_build/src/lib.rs", "")
.build();

p.cargo("check")
.with_stderr(
"\
[COMPILING] serde_build v0.1.0 ([CWD]/serde_build)
[COMPILING] serde_derive v0.1.0 ([CWD]/serde_derive)
[COMPILING] serde v0.1.0 ([CWD]/serde)
[CHECKING] foo v0.1.0 ([CWD])
[FINISHED] dev [..]
",
)
.run();
}

0 comments on commit 0a979d3

Please sign in to comment.