@@ -1217,31 +1217,31 @@ mod tests {
1217
1217
name : "std" . to_string ( ) ,
1218
1218
deps : Vec :: new ( ) ,
1219
1219
path : cwd. join ( "src/std" ) ,
1220
- doc_step : "doc-std" . to_string ( ) ,
1220
+ doc_step : "doc-crate- std" . to_string ( ) ,
1221
1221
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 ( ) ,
1224
1224
version : String :: new ( ) ,
1225
1225
} ) ;
1226
1226
build. crates . insert ( "test" . to_string ( ) , :: Crate {
1227
1227
name : "test" . to_string ( ) ,
1228
1228
deps : Vec :: new ( ) ,
1229
1229
path : cwd. join ( "src/test" ) ,
1230
- doc_step : "doc-test" . to_string ( ) ,
1230
+ doc_step : "doc-crate- test" . to_string ( ) ,
1231
1231
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 ( ) ,
1234
1234
version : String :: new ( ) ,
1235
1235
} ) ;
1236
1236
build. crates . insert ( "rustc-main" . to_string ( ) , :: Crate {
1237
1237
name : "rustc-main" . to_string ( ) ,
1238
1238
deps : Vec :: new ( ) ,
1239
1239
version : String :: new ( ) ,
1240
1240
path : cwd. join ( "src/rustc-main" ) ,
1241
- doc_step : "doc-rustc-main" . to_string ( ) ,
1241
+ doc_step : "doc-crate- rustc-main" . to_string ( ) ,
1242
1242
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 ( ) ,
1245
1245
} ) ;
1246
1246
return build
1247
1247
}
0 commit comments