@@ -448,6 +448,7 @@ impl TestBuildFilter {
448
448
& binary_list. rust_build_meta . target_directory ,
449
449
) ?;
450
450
451
+ dbg ! ( & binary_list. rust_build_meta) ;
451
452
let rust_build_meta = binary_list. rust_build_meta . map_paths ( & path_mapper) ;
452
453
let test_artifacts = RustTestArtifact :: from_binary_list (
453
454
graph,
@@ -898,6 +899,7 @@ impl BaseApp {
898
899
}
899
900
900
901
fn build_binary_list ( & self ) -> Result < Arc < BinaryList > > {
902
+ dbg ! ( ) ;
901
903
let binary_list = match self . reuse_build . binaries_metadata ( ) {
902
904
Some ( MetadataOrPath :: Metadata ( binary_list) ) => binary_list. clone ( ) ,
903
905
Some ( MetadataOrPath :: Path ( path) ) => {
@@ -914,6 +916,7 @@ impl BaseApp {
914
916
let target_triple =
915
917
discover_target_triple ( & self . cargo_configs , self . cargo_opts . target . as_deref ( ) ) ;
916
918
let env = self . cargo_configs . env ( ) ?;
919
+ dbg ! ( & env) ;
917
920
Arc :: new ( self . cargo_opts . compute_binary_list (
918
921
self . graph ( ) ,
919
922
self . manifest_path . as_deref ( ) ,
@@ -1018,6 +1021,7 @@ impl App {
1018
1021
let filter_exprs = self . build_filtering_expressions ( ) ?;
1019
1022
let test_filter_builder = self . build_filter . make_test_filter_builder ( filter_exprs) ?;
1020
1023
1024
+ dbg ! ( "exec_list" ) ;
1021
1025
let binary_list = self . base . build_binary_list ( ) ?;
1022
1026
1023
1027
match list_type {
@@ -1034,6 +1038,7 @@ impl App {
1034
1038
let target_runner = self
1035
1039
. base
1036
1040
. load_runner ( binary_list. rust_build_meta . target_triple . as_ref ( ) ) ;
1041
+ dbg ! ( "exec_list" ) ;
1037
1042
let test_list =
1038
1043
self . build_test_list ( binary_list, test_filter_builder, target_runner) ?;
1039
1044
@@ -1067,6 +1072,7 @@ impl App {
1067
1072
let test_filter_builder = self . build_filter . make_test_filter_builder ( filter_exprs) ?;
1068
1073
1069
1074
let binary_list = self . base . build_binary_list ( ) ?;
1075
+ dbg ! ( "exec_run" , & binary_list) ;
1070
1076
let target_runner = self
1071
1077
. base
1072
1078
. load_runner ( binary_list. rust_build_meta . target_triple . as_ref ( ) ) ;
0 commit comments