@@ -413,6 +413,7 @@ impl Step for RustAnalyzer {
413
413
cargo. env ( "SKIP_SLOW_TESTS" , "1" ) ;
414
414
415
415
cargo. add_rustc_lib_path ( builder, compiler) ;
416
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "rust-analyzer" , host, host) ;
416
417
run_cargo_test ( cargo, & [ ] , & [ ] , "rust-analyzer" , compiler, host, builder) ;
417
418
}
418
419
}
@@ -462,6 +463,7 @@ impl Step for Rustfmt {
462
463
463
464
cargo. add_rustc_lib_path ( builder, compiler) ;
464
465
466
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "rustfmt" , host, host) ;
465
467
run_cargo_test ( cargo, & [ ] , & [ ] , "rustfmt" , compiler, host, builder) ;
466
468
}
467
469
}
@@ -554,6 +556,13 @@ impl Miri {
554
556
cargo. env ( "RUST_BACKTRACE" , "1" ) ;
555
557
556
558
let mut cargo = Command :: from ( cargo) ;
559
+ let _guard = builder. msg (
560
+ Kind :: Build ,
561
+ compiler. stage + 1 ,
562
+ "miri sysroot" ,
563
+ compiler. host ,
564
+ compiler. host ,
565
+ ) ;
557
566
builder. run ( & mut cargo) ;
558
567
559
568
// # Determine where Miri put its sysroot.
@@ -631,6 +640,8 @@ impl Step for Miri {
631
640
SourceType :: InTree ,
632
641
& [ ] ,
633
642
) ;
643
+ let _guard = builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "miri" , host, host) ;
644
+
634
645
cargo. add_rustc_lib_path ( builder, compiler) ;
635
646
636
647
// miri tests need to know about the stage sysroot
@@ -799,6 +810,8 @@ impl Step for Clippy {
799
810
cargo. env ( "BLESS" , "Gesundheit" ) ;
800
811
}
801
812
813
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "clippy" , host, host) ;
814
+
802
815
if builder. try_run ( & mut cargo) . is_ok ( ) {
803
816
// The tests succeeded; nothing to do.
804
817
return ;
@@ -1049,6 +1062,13 @@ impl Step for RustdocGUI {
1049
1062
}
1050
1063
1051
1064
let _time = util:: timeit ( & builder) ;
1065
+ let _guard = builder. msg_sysroot_tool (
1066
+ Kind :: Test ,
1067
+ self . compiler . stage ,
1068
+ "rustdoc-gui" ,
1069
+ self . compiler . host ,
1070
+ self . target ,
1071
+ ) ;
1052
1072
crate :: render_tests:: try_run_tests ( builder, & mut cmd, true ) ;
1053
1073
}
1054
1074
}
0 commit comments