@@ -464,8 +464,17 @@ fn doc_lib_bin_same_name_documents_named_bin_when_requested() {
464
464
. build ( ) ;
465
465
466
466
p. cargo ( "doc --bin foo" )
467
- . with_stderr (
467
+ // The checking/documenting lines are sometimes swapped since they run
468
+ // concurrently.
469
+ . with_stderr_unordered (
468
470
"\
471
+ warning: output filename collision.
472
+ The bin target `foo` in package `foo v0.0.1 ([ROOT]/foo)` \
473
+ has the same output filename as the lib target `foo` in package `foo v0.0.1 ([ROOT]/foo)`.
474
+ Colliding filename is: [ROOT]/foo/target/doc/foo/index.html
475
+ The targets should have unique names.
476
+ This is a known bug where multiple crates with the same name use
477
+ the same path; see <https://github.com/rust-lang/cargo/issues/6313>.
469
478
[CHECKING] foo v0.0.1 ([CWD])
470
479
[DOCUMENTING] foo v0.0.1 ([CWD])
471
480
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
@@ -500,8 +509,17 @@ fn doc_lib_bin_same_name_documents_bins_when_requested() {
500
509
. build ( ) ;
501
510
502
511
p. cargo ( "doc --bins" )
503
- . with_stderr (
512
+ // The checking/documenting lines are sometimes swapped since they run
513
+ // concurrently.
514
+ . with_stderr_unordered (
504
515
"\
516
+ warning: output filename collision.
517
+ The bin target `foo` in package `foo v0.0.1 ([ROOT]/foo)` \
518
+ has the same output filename as the lib target `foo` in package `foo v0.0.1 ([ROOT]/foo)`.
519
+ Colliding filename is: [ROOT]/foo/target/doc/foo/index.html
520
+ The targets should have unique names.
521
+ This is a known bug where multiple crates with the same name use
522
+ the same path; see <https://github.com/rust-lang/cargo/issues/6313>.
505
523
[CHECKING] foo v0.0.1 ([CWD])
506
524
[DOCUMENTING] foo v0.0.1 ([CWD])
507
525
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
@@ -543,7 +561,9 @@ fn doc_lib_bin_example_same_name_documents_named_example_when_requested() {
543
561
. build ( ) ;
544
562
545
563
p. cargo ( "doc --example ex1" )
546
- . with_stderr (
564
+ // The checking/documenting lines are sometimes swapped since they run
565
+ // concurrently.
566
+ . with_stderr_unordered (
547
567
"\
548
568
[CHECKING] foo v0.0.1 ([CWD])
549
569
[DOCUMENTING] foo v0.0.1 ([CWD])
@@ -594,7 +614,9 @@ fn doc_lib_bin_example_same_name_documents_examples_when_requested() {
594
614
. build ( ) ;
595
615
596
616
p. cargo ( "doc --examples" )
597
- . with_stderr (
617
+ // The checking/documenting lines are sometimes swapped since they run
618
+ // concurrently.
619
+ . with_stderr_unordered (
598
620
"\
599
621
[CHECKING] foo v0.0.1 ([CWD])
600
622
[DOCUMENTING] foo v0.0.1 ([CWD])
@@ -2365,3 +2387,46 @@ fn scrape_examples_missing_flag() {
2365
2387
. with_stderr ( "error: -Z rustdoc-scrape-examples must take [..] an argument" )
2366
2388
. run ( ) ;
2367
2389
}
2390
+
2391
+ #[ cargo_test]
2392
+ fn lib_before_bin ( ) {
2393
+ // Checks that the library is documented before the binary.
2394
+ // Previously they were built concurrently, which can cause issues
2395
+ // if the bin has intra-doc links to the lib.
2396
+ let p = project ( )
2397
+ . file (
2398
+ "src/lib.rs" ,
2399
+ r#"
2400
+ /// Hi
2401
+ pub fn abc() {}
2402
+ "# ,
2403
+ )
2404
+ . file (
2405
+ "src/bin/somebin.rs" ,
2406
+ r#"
2407
+ //! See [`foo::abc`]
2408
+ fn main() {}
2409
+ "# ,
2410
+ )
2411
+ . build ( ) ;
2412
+
2413
+ // Run check first. This just helps ensure that the test clearly shows the
2414
+ // order of the rustdoc commands.
2415
+ p. cargo ( "check" ) . run ( ) ;
2416
+
2417
+ // The order of output here should be deterministic.
2418
+ p. cargo ( "doc -v" )
2419
+ . with_stderr (
2420
+ "\
2421
+ [DOCUMENTING] foo [..]
2422
+ [RUNNING] `rustdoc --crate-type lib --crate-name foo src/lib.rs [..]
2423
+ [RUNNING] `rustdoc --crate-type bin --crate-name somebin src/bin/somebin.rs [..]
2424
+ [FINISHED] [..]
2425
+ " ,
2426
+ )
2427
+ . run ( ) ;
2428
+
2429
+ // And the link should exist.
2430
+ let bin_html = p. read_file ( "target/doc/somebin/index.html" ) ;
2431
+ assert ! ( bin_html. contains( "../foo/fn.abc.html" ) ) ;
2432
+ }
0 commit comments