File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -242,8 +242,8 @@ impl<'cfg> Workspace<'cfg> {
242
242
while let Some ( path) = cur {
243
243
let manifest = path. join ( "Cargo.toml" ) ;
244
244
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 ( ) {
247
247
WorkspaceConfig :: Root { .. } => {
248
248
debug ! ( "find_root - found" ) ;
249
249
return Ok ( Some ( manifest) )
Original file line number Diff line number Diff line change @@ -1055,3 +1055,22 @@ fn workspace_with_transitive_dev_deps() {
1055
1055
assert_that ( p. cargo ( "test" ) . args ( & [ "-p" , "bar" ] ) ,
1056
1056
execs ( ) . with_status ( 0 ) ) ;
1057
1057
}
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
+ }
You can’t perform that action at this time.
0 commit comments