File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1672,18 +1672,20 @@ fn excluded_default_members_crate_glob() {
1672
1672
. file ( "bar/baz/Cargo.toml" , & basic_manifest ( "baz" , "0.1.0" ) )
1673
1673
. file ( "bar/baz/src/main.rs" , "fn main() {}" )
1674
1674
. 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() {} " ) ;
1676
1676
1677
1677
let p = p. build ( ) ;
1678
1678
p. cargo ( "build" ) . run ( ) ;
1679
1679
1680
1680
assert ! ( p. root( ) . join( "target" ) . is_dir( ) ) ;
1681
1681
assert ! ( !p. bin( "foo" ) . is_file( ) ) ;
1682
1682
assert ! ( p. bin( "baz" ) . is_file( ) ) ;
1683
+ assert ! ( !p. bin( "quux" ) . exists( ) ) ;
1683
1684
1684
1685
p. cargo ( "build --workspace" ) . run ( ) ;
1685
1686
assert ! ( p. root( ) . join( "target" ) . is_dir( ) ) ;
1686
1687
assert ! ( p. bin( "foo" ) . is_file( ) ) ;
1688
+ assert ! ( !p. bin( "quux" ) . exists( ) ) ;
1687
1689
1688
1690
p. cargo ( "build" ) . cwd ( "bar/quux" ) . run ( ) ;
1689
1691
assert ! ( p. root( ) . join( "bar/quux/target" ) . is_dir( ) ) ;
You can’t perform that action at this time.
0 commit comments