1
1
// ignore-tidy-filelength
2
2
3
+ use std:: borrow:: Cow ;
3
4
use std:: collections:: { HashMap , HashSet } ;
4
5
use std:: ffi:: { OsStr , OsString } ;
5
6
use std:: fs:: { self , create_dir_all, File , OpenOptions } ;
@@ -723,7 +724,7 @@ impl<'test> TestCx<'test> {
723
724
self . maybe_add_external_args ( & mut rustc, & self . config . target_rustcflags ) ;
724
725
rustc. args ( & self . props . compile_flags ) ;
725
726
726
- self . compose_and_run_compiler ( rustc, Some ( src) )
727
+ self . compose_and_run_compiler ( rustc, Some ( src) , self . testpaths )
727
728
}
728
729
729
730
fn run_debuginfo_test ( & self ) {
@@ -1579,13 +1580,15 @@ impl<'test> TestCx<'test> {
1579
1580
passes,
1580
1581
) ;
1581
1582
1582
- self . compose_and_run_compiler ( rustc, None )
1583
+ self . compose_and_run_compiler ( rustc, None , self . testpaths )
1583
1584
}
1584
1585
1585
- fn document ( & self , out_dir : & Path ) -> ProcRes {
1586
+ /// `root_out_dir` and `root_testpaths` refer to the parameters of the actual test being run.
1587
+ /// Auxiliaries, no matter how deep, have the same root_out_dir and root_testpaths.
1588
+ fn document ( & self , root_out_dir : & Path , root_testpaths : & TestPaths ) -> ProcRes {
1586
1589
if self . props . build_aux_docs {
1587
1590
for rel_ab in & self . props . aux_builds {
1588
- let aux_testpaths = self . compute_aux_test_paths ( & self . testpaths , rel_ab) ;
1591
+ let aux_testpaths = self . compute_aux_test_paths ( root_testpaths , rel_ab) ;
1589
1592
let aux_props =
1590
1593
self . props . from_aux_file ( & aux_testpaths. file , self . revision , self . config ) ;
1591
1594
let aux_cx = TestCx {
@@ -1596,7 +1599,9 @@ impl<'test> TestCx<'test> {
1596
1599
} ;
1597
1600
// Create the directory for the stdout/stderr files.
1598
1601
create_dir_all ( aux_cx. output_base_dir ( ) ) . unwrap ( ) ;
1599
- let auxres = aux_cx. document ( out_dir) ;
1602
+ // use root_testpaths here, because aux-builds should have the
1603
+ // same --out-dir and auxiliary directory.
1604
+ let auxres = aux_cx. document ( & root_out_dir, root_testpaths) ;
1600
1605
if !auxres. status . success ( ) {
1601
1606
return auxres;
1602
1607
}
@@ -1606,21 +1611,40 @@ impl<'test> TestCx<'test> {
1606
1611
let aux_dir = self . aux_output_dir_name ( ) ;
1607
1612
1608
1613
let rustdoc_path = self . config . rustdoc_path . as_ref ( ) . expect ( "--rustdoc-path not passed" ) ;
1609
- let mut rustdoc = Command :: new ( rustdoc_path) ;
1610
1614
1615
+ // actual --out-dir given to the auxiliary or test, as opposed to the root out dir for the entire
1616
+ // test
1617
+ let out_dir: Cow < ' _ , Path > = if self . props . unique_doc_out_dir {
1618
+ let file_name = self . testpaths . file . file_stem ( ) . expect ( "file name should not be empty" ) ;
1619
+ let out_dir = PathBuf :: from_iter ( [
1620
+ root_out_dir,
1621
+ Path :: new ( "docs" ) ,
1622
+ Path :: new ( file_name) ,
1623
+ Path :: new ( "doc" ) ,
1624
+ ] ) ;
1625
+ create_dir_all ( & out_dir) . unwrap ( ) ;
1626
+ Cow :: Owned ( out_dir)
1627
+ } else {
1628
+ Cow :: Borrowed ( root_out_dir)
1629
+ } ;
1630
+
1631
+ let mut rustdoc = Command :: new ( rustdoc_path) ;
1632
+ let current_dir = output_base_dir ( self . config , root_testpaths, self . safe_revision ( ) ) ;
1633
+ rustdoc. current_dir ( current_dir) ;
1611
1634
rustdoc
1612
1635
. arg ( "-L" )
1613
1636
. arg ( self . config . run_lib_path . to_str ( ) . unwrap ( ) )
1614
1637
. arg ( "-L" )
1615
1638
. arg ( aux_dir)
1616
1639
. arg ( "-o" )
1617
- . arg ( out_dir)
1640
+ . arg ( out_dir. as_ref ( ) )
1618
1641
. arg ( "--deny" )
1619
1642
. arg ( "warnings" )
1620
1643
. arg ( & self . testpaths . file )
1621
1644
. arg ( "-A" )
1622
1645
. arg ( "internal_features" )
1623
- . args ( & self . props . compile_flags ) ;
1646
+ . args ( & self . props . compile_flags )
1647
+ . args ( & self . props . doc_flags ) ;
1624
1648
1625
1649
if self . config . mode == RustdocJson {
1626
1650
rustdoc. arg ( "--output-format" ) . arg ( "json" ) . arg ( "-Zunstable-options" ) ;
@@ -1630,7 +1654,7 @@ impl<'test> TestCx<'test> {
1630
1654
rustdoc. arg ( format ! ( "-Clinker={}" , linker) ) ;
1631
1655
}
1632
1656
1633
- self . compose_and_run_compiler ( rustdoc, None )
1657
+ self . compose_and_run_compiler ( rustdoc, None , root_testpaths )
1634
1658
}
1635
1659
1636
1660
fn exec_compiled_test ( & self ) -> ProcRes {
@@ -1828,9 +1852,16 @@ impl<'test> TestCx<'test> {
1828
1852
}
1829
1853
}
1830
1854
1831
- fn compose_and_run_compiler ( & self , mut rustc : Command , input : Option < String > ) -> ProcRes {
1855
+ /// `root_testpaths` refers to the path of the original test.
1856
+ /// the auxiliary and the test with an aux-build have the same `root_testpaths`.
1857
+ fn compose_and_run_compiler (
1858
+ & self ,
1859
+ mut rustc : Command ,
1860
+ input : Option < String > ,
1861
+ root_testpaths : & TestPaths ,
1862
+ ) -> ProcRes {
1832
1863
let aux_dir = self . aux_output_dir ( ) ;
1833
- self . build_all_auxiliary ( & self . testpaths , & aux_dir, & mut rustc) ;
1864
+ self . build_all_auxiliary ( root_testpaths , & aux_dir, & mut rustc) ;
1834
1865
1835
1866
rustc. envs ( self . props . rustc_env . clone ( ) ) ;
1836
1867
self . props . unset_rustc_env . iter ( ) . fold ( & mut rustc, Command :: env_remove) ;
@@ -2545,7 +2576,7 @@ impl<'test> TestCx<'test> {
2545
2576
Vec :: new ( ) ,
2546
2577
) ;
2547
2578
2548
- let proc_res = self . compose_and_run_compiler ( rustc, None ) ;
2579
+ let proc_res = self . compose_and_run_compiler ( rustc, None , self . testpaths ) ;
2549
2580
let output_path = self . get_filecheck_file ( "ll" ) ;
2550
2581
( proc_res, output_path)
2551
2582
}
@@ -2581,7 +2612,7 @@ impl<'test> TestCx<'test> {
2581
2612
Vec :: new ( ) ,
2582
2613
) ;
2583
2614
2584
- let proc_res = self . compose_and_run_compiler ( rustc, None ) ;
2615
+ let proc_res = self . compose_and_run_compiler ( rustc, None , self . testpaths ) ;
2585
2616
let output_path = self . get_filecheck_file ( "s" ) ;
2586
2617
( proc_res, output_path)
2587
2618
}
@@ -2664,7 +2695,7 @@ impl<'test> TestCx<'test> {
2664
2695
let out_dir = self . output_base_dir ( ) ;
2665
2696
remove_and_create_dir_all ( & out_dir) ;
2666
2697
2667
- let proc_res = self . document ( & out_dir) ;
2698
+ let proc_res = self . document ( & out_dir, & self . testpaths ) ;
2668
2699
if !proc_res. status . success ( ) {
2669
2700
self . fatal_proc_rec ( "rustdoc failed!" , & proc_res) ;
2670
2701
}
@@ -2723,7 +2754,7 @@ impl<'test> TestCx<'test> {
2723
2754
let aux_dir = new_rustdoc. aux_output_dir ( ) ;
2724
2755
new_rustdoc. build_all_auxiliary ( & new_rustdoc. testpaths , & aux_dir, & mut rustc) ;
2725
2756
2726
- let proc_res = new_rustdoc. document ( & compare_dir) ;
2757
+ let proc_res = new_rustdoc. document ( & compare_dir, & new_rustdoc . testpaths ) ;
2727
2758
if !proc_res. status . success ( ) {
2728
2759
eprintln ! ( "failed to run nightly rustdoc" ) ;
2729
2760
return ;
@@ -2847,7 +2878,7 @@ impl<'test> TestCx<'test> {
2847
2878
let out_dir = self . output_base_dir ( ) ;
2848
2879
remove_and_create_dir_all ( & out_dir) ;
2849
2880
2850
- let proc_res = self . document ( & out_dir) ;
2881
+ let proc_res = self . document ( & out_dir, & self . testpaths ) ;
2851
2882
if !proc_res. status . success ( ) {
2852
2883
self . fatal_proc_rec ( "rustdoc failed!" , & proc_res) ;
2853
2884
}
@@ -2923,31 +2954,24 @@ impl<'test> TestCx<'test> {
2923
2954
fn check_rustdoc_test_option ( & self , res : ProcRes ) {
2924
2955
let mut other_files = Vec :: new ( ) ;
2925
2956
let mut files: HashMap < String , Vec < usize > > = HashMap :: new ( ) ;
2926
- let cwd = env:: current_dir ( ) . unwrap ( ) ;
2927
- files. insert (
2928
- self . testpaths
2929
- . file
2930
- . strip_prefix ( & cwd)
2931
- . unwrap_or ( & self . testpaths . file )
2932
- . to_str ( )
2933
- . unwrap ( )
2934
- . replace ( '\\' , "/" ) ,
2935
- self . get_lines ( & self . testpaths . file , Some ( & mut other_files) ) ,
2936
- ) ;
2957
+ let normalized = fs:: canonicalize ( & self . testpaths . file ) . expect ( "failed to canonicalize" ) ;
2958
+ let normalized = normalized. to_str ( ) . unwrap ( ) . replace ( '\\' , "/" ) ;
2959
+ files. insert ( normalized, self . get_lines ( & self . testpaths . file , Some ( & mut other_files) ) ) ;
2937
2960
for other_file in other_files {
2938
2961
let mut path = self . testpaths . file . clone ( ) ;
2939
2962
path. set_file_name ( & format ! ( "{}.rs" , other_file) ) ;
2940
- files. insert (
2941
- path. strip_prefix ( & cwd) . unwrap_or ( & path) . to_str ( ) . unwrap ( ) . replace ( '\\' , "/" ) ,
2942
- self . get_lines ( & path, None ) ,
2943
- ) ;
2963
+ let path = fs:: canonicalize ( path) . expect ( "failed to canonicalize" ) ;
2964
+ let normalized = path. to_str ( ) . unwrap ( ) . replace ( '\\' , "/" ) ;
2965
+ files. insert ( normalized, self . get_lines ( & path, None ) ) ;
2944
2966
}
2945
2967
2946
2968
let mut tested = 0 ;
2947
2969
for _ in res. stdout . split ( '\n' ) . filter ( |s| s. starts_with ( "test " ) ) . inspect ( |s| {
2948
2970
if let Some ( ( left, right) ) = s. split_once ( " - " ) {
2949
2971
let path = left. rsplit ( "test " ) . next ( ) . unwrap ( ) ;
2950
- if let Some ( ref mut v) = files. get_mut ( & path. replace ( '\\' , "/" ) ) {
2972
+ let path = fs:: canonicalize ( & path) . expect ( "failed to canonicalize" ) ;
2973
+ let path = path. to_str ( ) . unwrap ( ) . replace ( '\\' , "/" ) ;
2974
+ if let Some ( ref mut v) = files. get_mut ( & path) {
2951
2975
tested += 1 ;
2952
2976
let mut iter = right. split ( "(line " ) ;
2953
2977
iter. next ( ) ;
@@ -3779,7 +3803,7 @@ impl<'test> TestCx<'test> {
3779
3803
if let Some ( nodejs) = & self . config . nodejs {
3780
3804
let out_dir = self . output_base_dir ( ) ;
3781
3805
3782
- self . document ( & out_dir) ;
3806
+ self . document ( & out_dir, & self . testpaths ) ;
3783
3807
3784
3808
let root = self . config . find_rust_src_root ( ) . unwrap ( ) ;
3785
3809
let file_stem =
@@ -4095,7 +4119,7 @@ impl<'test> TestCx<'test> {
4095
4119
rustc. arg ( crate_name) ;
4096
4120
}
4097
4121
4098
- let res = self . compose_and_run_compiler ( rustc, None ) ;
4122
+ let res = self . compose_and_run_compiler ( rustc, None , self . testpaths ) ;
4099
4123
if !res. status . success ( ) {
4100
4124
self . fatal_proc_rec ( "failed to compile fixed code" , & res) ;
4101
4125
}
0 commit comments