Skip to content

Commit b377c4b

Browse files
committed
Check for quux binary in excluded_default_members_crate_glob test (review feedback)
1 parent b70a596 commit b377c4b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/testsuite/workspaces.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1672,18 +1672,20 @@ fn excluded_default_members_crate_glob() {
16721672
.file("bar/baz/Cargo.toml", &basic_manifest("baz", "0.1.0"))
16731673
.file("bar/baz/src/main.rs", "fn main() {}")
16741674
.file("bar/quux/Cargo.toml", &basic_manifest("quux", "0.1.0"))
1675-
.file("bar/quux/src/lib.rs", "");
1675+
.file("bar/quux/src/main.rs", "fn main() {}");
16761676

16771677
let p = p.build();
16781678
p.cargo("build").run();
16791679

16801680
assert!(p.root().join("target").is_dir());
16811681
assert!(!p.bin("foo").is_file());
16821682
assert!(p.bin("baz").is_file());
1683+
assert!(!p.bin("quux").exists());
16831684

16841685
p.cargo("build --workspace").run();
16851686
assert!(p.root().join("target").is_dir());
16861687
assert!(p.bin("foo").is_file());
1688+
assert!(!p.bin("quux").exists());
16871689

16881690
p.cargo("build").cwd("bar/quux").run();
16891691
assert!(p.root().join("bar/quux/target").is_dir());

0 commit comments

Comments
 (0)