@@ -415,6 +415,7 @@ impl Step for RustAnalyzer {
415
415
cargo. env ( "SKIP_SLOW_TESTS" , "1" ) ;
416
416
417
417
cargo. add_rustc_lib_path ( builder, compiler) ;
418
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "rust-analyzer" , host, host) ;
418
419
run_cargo_test ( cargo, & [ ] , & [ ] , "rust-analyzer" , compiler, host, builder) ;
419
420
}
420
421
}
@@ -464,6 +465,7 @@ impl Step for Rustfmt {
464
465
465
466
cargo. add_rustc_lib_path ( builder, compiler) ;
466
467
468
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "rustfmt" , host, host) ;
467
469
run_cargo_test ( cargo, & [ ] , & [ ] , "rustfmt" , compiler, host, builder) ;
468
470
}
469
471
}
@@ -556,6 +558,13 @@ impl Miri {
556
558
cargo. env ( "RUST_BACKTRACE" , "1" ) ;
557
559
558
560
let mut cargo = Command :: from ( cargo) ;
561
+ let _guard = builder. msg (
562
+ Kind :: Build ,
563
+ compiler. stage + 1 ,
564
+ "miri sysroot" ,
565
+ compiler. host ,
566
+ compiler. host ,
567
+ ) ;
559
568
builder. run ( & mut cargo) ;
560
569
561
570
// # Determine where Miri put its sysroot.
@@ -633,6 +642,8 @@ impl Step for Miri {
633
642
SourceType :: InTree ,
634
643
& [ ] ,
635
644
) ;
645
+ let _guard = builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "miri" , host, host) ;
646
+
636
647
cargo. add_rustc_lib_path ( builder, compiler) ;
637
648
638
649
// miri tests need to know about the stage sysroot
@@ -801,6 +812,8 @@ impl Step for Clippy {
801
812
cargo. env ( "BLESS" , "Gesundheit" ) ;
802
813
}
803
814
815
+ builder. msg_sysroot_tool ( Kind :: Test , compiler. stage , "clippy" , host, host) ;
816
+
804
817
if builder. try_run ( & mut cargo) . is_ok ( ) {
805
818
// The tests succeeded; nothing to do.
806
819
return ;
@@ -1056,6 +1069,13 @@ impl Step for RustdocGUI {
1056
1069
}
1057
1070
1058
1071
let _time = util:: timeit ( & builder) ;
1072
+ let _guard = builder. msg_sysroot_tool (
1073
+ Kind :: Test ,
1074
+ self . compiler . stage ,
1075
+ "rustdoc-gui" ,
1076
+ self . compiler . host ,
1077
+ self . target ,
1078
+ ) ;
1059
1079
crate :: render_tests:: try_run_tests ( builder, & mut cmd, true ) ;
1060
1080
}
1061
1081
}
0 commit comments