File tree 2 files changed +6
-18
lines changed
src/cargo/ops/cargo_compile
2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,9 @@ impl<'a> UnitGenerator<'a, '_> {
198
198
. filter ( |t| {
199
199
t. documented ( )
200
200
&& ( !t. is_bin ( )
201
- || !targets. iter ( ) . any ( |l| l. is_lib ( ) && l. name ( ) == t. name ( ) ) )
201
+ || !targets
202
+ . iter ( )
203
+ . any ( |l| l. is_lib ( ) && l. crate_name ( ) == t. crate_name ( ) ) )
202
204
} )
203
205
. collect ( )
204
206
}
Original file line number Diff line number Diff line change @@ -488,30 +488,16 @@ fn doc_lib_bin_same_name_with_dash() {
488
488
. file ( "src/main.rs" , "fn main() {}" )
489
489
. build ( ) ;
490
490
p. cargo ( "doc" )
491
- . with_stderr_unordered (
491
+ . with_stderr (
492
492
"\
493
- warning: output filename collision.
494
- The bin target `foo-bar` in package `foo-bar v1.0.0 ([ROOT]/foo)` has the same \
495
- output filename as the lib target `foo_bar` in package `foo-bar v1.0.0 ([ROOT]/foo)`.
496
- Colliding filename is: [ROOT]/foo/target/doc/foo_bar/index.html
497
- The output filenames should be unique.
498
- This is a known bug where multiple crates with the same name use
499
- the same path; see <https://github.com/rust-lang/cargo/issues/6313>.
500
- If this looks unexpected, it may be a bug in Cargo. Please file a bug report at
501
- https://github.com/rust-lang/cargo/issues/ with as much information as you
502
- can provide.
503
- cargo [..]
504
- First unit: [..]
505
- Second unit: [..]
506
- [CHECKING] foo-bar v1.0.0 ([ROOT]/foo)
507
493
[DOCUMENTING] foo-bar v1.0.0 ([ROOT]/foo)
508
494
[FINISHED] [..]
509
- [GENERATED] [ROOT]/foo/target/doc/foo_bar/index.html and 1 other file
495
+ [GENERATED] [ROOT]/foo/target/doc/foo_bar/index.html
510
496
" ,
511
497
)
512
498
. run ( ) ;
513
499
assert ! ( p. build_dir( ) . join( "doc/foo_bar/index.html" ) . exists( ) ) ;
514
- assert ! ( p. build_dir( ) . join( "doc/foo_bar/fn.main.html" ) . exists( ) ) ;
500
+ assert ! ( ! p. build_dir( ) . join( "doc/foo_bar/fn.main.html" ) . exists( ) ) ;
515
501
}
516
502
517
503
#[ cargo_test]
You can’t perform that action at this time.
0 commit comments