Skip to content

Commit 6d70492

Browse files
committed
Don't ignore errors in workspace manifest
1 parent d902f59 commit 6d70492

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

src/cargo/core/workspace.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ impl<'cfg> Workspace<'cfg> {
242242
while let Some(path) = cur {
243243
let manifest = path.join("Cargo.toml");
244244
debug!("find_root - trying {}", manifest.display());
245-
if let Ok(pkg) = self.packages.load(&manifest) {
246-
match *pkg.workspace_config() {
245+
if manifest.exists() {
246+
match *self.packages.load(&manifest)?.workspace_config() {
247247
WorkspaceConfig::Root { .. } => {
248248
debug!("find_root - found");
249249
return Ok(Some(manifest))

tests/workspaces.rs

+19
Original file line numberDiff line numberDiff line change
@@ -1055,3 +1055,22 @@ fn workspace_with_transitive_dev_deps() {
10551055
assert_that(p.cargo("test").args(&["-p", "bar"]),
10561056
execs().with_status(0));
10571057
}
1058+
1059+
#[test]
1060+
fn error_if_parent_cargo_toml_is_invalid() {
1061+
let p = project("foo")
1062+
.file("Cargo.toml", "Totally not a TOML file")
1063+
.file("bar/Cargo.toml", r#"
1064+
[project]
1065+
name = "bar"
1066+
version = "0.1.0"
1067+
authors = []
1068+
"#)
1069+
.file("bar/src/main.rs", "fn main() {}");
1070+
p.build();
1071+
1072+
assert_that(p.cargo("build").cwd(p.root().join("bar")),
1073+
execs().with_status(101)
1074+
.with_stderr_contains("\
1075+
[ERROR] failed to parse manifest at `[..]`"));
1076+
}

0 commit comments

Comments
 (0)