@@ -521,7 +521,7 @@ impl Step for RustdocTheme {
521
521
fn make_run ( run : RunConfig ) {
522
522
let compiler = run. builder . compiler ( run. builder . top_stage , run. host ) ;
523
523
524
- run. builder . ensure ( RustdocTheme { compiler : compiler } ) ;
524
+ run. builder . ensure ( RustdocTheme { compiler } ) ;
525
525
}
526
526
527
527
fn run ( self , builder : & Builder ) {
@@ -584,9 +584,9 @@ impl Step for RustdocJS {
584
584
} ) ;
585
585
builder. run ( & mut command) ;
586
586
} else {
587
- builder. info ( & format ! (
587
+ builder. info (
588
588
"No nodejs found, skipping \" src/test/rustdoc-js\" tests"
589
- ) ) ;
589
+ ) ;
590
590
}
591
591
}
592
592
}
@@ -653,7 +653,7 @@ impl Step for Tidy {
653
653
}
654
654
655
655
let _folder = builder. fold_output ( || "tidy" ) ;
656
- builder. info ( & format ! ( "tidy check" ) ) ;
656
+ builder. info ( "tidy check" ) ;
657
657
try_run ( builder, & mut cmd) ;
658
658
}
659
659
@@ -1168,9 +1168,9 @@ impl Step for Compiletest {
1168
1168
}
1169
1169
}
1170
1170
if suite == "run-make-fulldeps" && !builder. config . llvm_enabled {
1171
- builder. info ( & format ! (
1171
+ builder. info (
1172
1172
"Ignoring run-make test suite as they generally don't work without LLVM"
1173
- ) ) ;
1173
+ ) ;
1174
1174
return ;
1175
1175
}
1176
1176
@@ -1692,10 +1692,10 @@ impl Step for Crate {
1692
1692
// The javascript shim implements the syscall interface so that test
1693
1693
// output can be correctly reported.
1694
1694
if !builder. config . wasm_syscall {
1695
- builder. info ( & format ! (
1695
+ builder. info (
1696
1696
"Libstd was built without `wasm_syscall` feature enabled: \
1697
1697
test output may not be visible."
1698
- ) ) ;
1698
+ ) ;
1699
1699
}
1700
1700
1701
1701
// On the wasm32-unknown-unknown target we're using LTO which is
@@ -1891,7 +1891,7 @@ impl Step for Distcheck {
1891
1891
1892
1892
/// Run "distcheck", a 'make check' from a tarball
1893
1893
fn run ( self , builder : & Builder ) {
1894
- builder. info ( & format ! ( "Distcheck" ) ) ;
1894
+ builder. info ( "Distcheck" ) ;
1895
1895
let dir = builder. out . join ( "tmp" ) . join ( "distcheck" ) ;
1896
1896
let _ = fs:: remove_dir_all ( & dir) ;
1897
1897
t ! ( fs:: create_dir_all( & dir) ) ;
@@ -1919,7 +1919,7 @@ impl Step for Distcheck {
1919
1919
) ;
1920
1920
1921
1921
// Now make sure that rust-src has all of libstd's dependencies
1922
- builder. info ( & format ! ( "Distcheck rust-src" ) ) ;
1922
+ builder. info ( "Distcheck rust-src" ) ;
1923
1923
let dir = builder. out . join ( "tmp" ) . join ( "distcheck-src" ) ;
1924
1924
let _ = fs:: remove_dir_all ( & dir) ;
1925
1925
t ! ( fs:: create_dir_all( & dir) ) ;
0 commit comments