@@ -1217,31 +1217,31 @@ mod tests {
12171217 name : "std" . to_string ( ) ,
12181218 deps : Vec :: new ( ) ,
12191219 path : cwd. join ( "src/std" ) ,
1220- doc_step : "doc-std" . to_string ( ) ,
1220+ doc_step : "doc-crate- std" . to_string ( ) ,
12211221 build_step : "build-crate-std" . to_string ( ) ,
1222- test_step : "test-std" . to_string ( ) ,
1223- bench_step : "bench-std" . to_string ( ) ,
1222+ test_step : "test-crate- std" . to_string ( ) ,
1223+ bench_step : "bench-crate- std" . to_string ( ) ,
12241224 version : String :: new ( ) ,
12251225 } ) ;
12261226 build. crates . insert ( "test" . to_string ( ) , :: Crate {
12271227 name : "test" . to_string ( ) ,
12281228 deps : Vec :: new ( ) ,
12291229 path : cwd. join ( "src/test" ) ,
1230- doc_step : "doc-test" . to_string ( ) ,
1230+ doc_step : "doc-crate- test" . to_string ( ) ,
12311231 build_step : "build-crate-test" . to_string ( ) ,
1232- test_step : "test-test" . to_string ( ) ,
1233- bench_step : "bench-test" . to_string ( ) ,
1232+ test_step : "test-crate- test" . to_string ( ) ,
1233+ bench_step : "bench-crate- test" . to_string ( ) ,
12341234 version : String :: new ( ) ,
12351235 } ) ;
12361236 build. crates . insert ( "rustc-main" . to_string ( ) , :: Crate {
12371237 name : "rustc-main" . to_string ( ) ,
12381238 deps : Vec :: new ( ) ,
12391239 version : String :: new ( ) ,
12401240 path : cwd. join ( "src/rustc-main" ) ,
1241- doc_step : "doc-rustc-main" . to_string ( ) ,
1241+ doc_step : "doc-crate- rustc-main" . to_string ( ) ,
12421242 build_step : "build-crate-rustc-main" . to_string ( ) ,
1243- test_step : "test-rustc-main" . to_string ( ) ,
1244- bench_step : "bench-rustc-main" . to_string ( ) ,
1243+ test_step : "test-crate- rustc-main" . to_string ( ) ,
1244+ bench_step : "bench-crate- rustc-main" . to_string ( ) ,
12451245 } ) ;
12461246 return build
12471247 }
0 commit comments