@@ -246,14 +246,14 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
246
246
crate_rule ( build,
247
247
& mut rules,
248
248
"libstd-link" ,
249
- "build-crate-std_shim " ,
249
+ "build-crate-std " ,
250
250
compile:: std_link)
251
251
. dep ( |s| s. name ( "startup-objects" ) )
252
252
. dep ( |s| s. name ( "create-sysroot" ) . target ( s. host ) ) ;
253
253
crate_rule ( build,
254
254
& mut rules,
255
255
"libtest-link" ,
256
- "build-crate-test_shim " ,
256
+ "build-crate-test " ,
257
257
compile:: test_link)
258
258
. dep ( |s| s. name ( "libstd-link" ) ) ;
259
259
crate_rule ( build,
@@ -263,13 +263,13 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
263
263
compile:: rustc_link)
264
264
. dep ( |s| s. name ( "libtest-link" ) ) ;
265
265
266
- for ( krate, path, _default) in krates ( "std_shim " ) {
266
+ for ( krate, path, _default) in krates ( "std " ) {
267
267
rules. build ( & krate. build_step , path)
268
268
. dep ( |s| s. name ( "startup-objects" ) )
269
269
. dep ( move |s| s. name ( "rustc" ) . host ( & build. config . build ) . target ( s. host ) )
270
270
. run ( move |s| compile:: std ( build, s. target , & s. compiler ( ) ) ) ;
271
271
}
272
- for ( krate, path, _default) in krates ( "test_shim " ) {
272
+ for ( krate, path, _default) in krates ( "test " ) {
273
273
rules. build ( & krate. build_step , path)
274
274
. dep ( |s| s. name ( "libstd-link" ) )
275
275
. run ( move |s| compile:: test ( build, s. target , & s. compiler ( ) ) ) ;
@@ -384,7 +384,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
384
384
"pretty" , "run-fail-fulldeps" ) ;
385
385
}
386
386
387
- for ( krate, path, _default) in krates ( "std_shim " ) {
387
+ for ( krate, path, _default) in krates ( "std " ) {
388
388
rules. test ( & krate. test_step , path)
389
389
. dep ( |s| s. name ( "libtest" ) )
390
390
. dep ( |s| s. name ( "emulator-copy-libs" ) )
@@ -400,7 +400,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
400
400
Mode :: Libstd , TestKind :: Test , None ) ) ;
401
401
402
402
// std benchmarks
403
- for ( krate, path, _default) in krates ( "std_shim " ) {
403
+ for ( krate, path, _default) in krates ( "std " ) {
404
404
rules. bench ( & krate. bench_step , path)
405
405
. dep ( |s| s. name ( "libtest" ) )
406
406
. dep ( |s| s. name ( "emulator-copy-libs" ) )
@@ -415,7 +415,7 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
415
415
. run ( move |s| check:: krate ( build, & s. compiler ( ) , s. target ,
416
416
Mode :: Libstd , TestKind :: Bench , None ) ) ;
417
417
418
- for ( krate, path, _default) in krates ( "test_shim " ) {
418
+ for ( krate, path, _default) in krates ( "test " ) {
419
419
rules. test ( & krate. test_step , path)
420
420
. dep ( |s| s. name ( "libtest" ) )
421
421
. dep ( |s| s. name ( "emulator-copy-libs" ) )
@@ -583,13 +583,13 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
583
583
. default ( build. config . docs )
584
584
. host ( true )
585
585
. run ( move |s| doc:: error_index ( build, s. target ) ) ;
586
- for ( krate, path, default) in krates ( "std_shim " ) {
586
+ for ( krate, path, default) in krates ( "std " ) {
587
587
rules. doc ( & krate. doc_step , path)
588
588
. dep ( |s| s. name ( "libstd-link" ) )
589
589
. default ( default && build. config . docs )
590
590
. run ( move |s| doc:: std ( build, s. stage , s. target ) ) ;
591
591
}
592
- for ( krate, path, default) in krates ( "test_shim " ) {
592
+ for ( krate, path, default) in krates ( "test " ) {
593
593
rules. doc ( & krate. doc_step , path)
594
594
. dep ( |s| s. name ( "libtest-link" ) )
595
595
. default ( default && build. config . compiler_docs )
@@ -1154,23 +1154,23 @@ mod tests {
1154
1154
1155
1155
let mut build = Build :: new ( flags, config) ;
1156
1156
let cwd = env:: current_dir ( ) . unwrap ( ) ;
1157
- build. crates . insert ( "std_shim " . to_string ( ) , :: Crate {
1158
- name : "std_shim " . to_string ( ) ,
1157
+ build. crates . insert ( "std " . to_string ( ) , :: Crate {
1158
+ name : "std " . to_string ( ) ,
1159
1159
deps : Vec :: new ( ) ,
1160
- path : cwd. join ( "src/std_shim " ) ,
1161
- doc_step : "doc-std_shim " . to_string ( ) ,
1162
- build_step : "build-crate-std_shim " . to_string ( ) ,
1163
- test_step : "test-std_shim " . to_string ( ) ,
1164
- bench_step : "bench-std_shim " . to_string ( ) ,
1160
+ path : cwd. join ( "src/std " ) ,
1161
+ doc_step : "doc-std " . to_string ( ) ,
1162
+ build_step : "build-crate-std " . to_string ( ) ,
1163
+ test_step : "test-std " . to_string ( ) ,
1164
+ bench_step : "bench-std " . to_string ( ) ,
1165
1165
} ) ;
1166
- build. crates . insert ( "test_shim " . to_string ( ) , :: Crate {
1167
- name : "test_shim " . to_string ( ) ,
1166
+ build. crates . insert ( "test " . to_string ( ) , :: Crate {
1167
+ name : "test " . to_string ( ) ,
1168
1168
deps : Vec :: new ( ) ,
1169
- path : cwd. join ( "src/test_shim " ) ,
1170
- doc_step : "doc-test_shim " . to_string ( ) ,
1171
- build_step : "build-crate-test_shim " . to_string ( ) ,
1172
- test_step : "test-test_shim " . to_string ( ) ,
1173
- bench_step : "bench-test_shim " . to_string ( ) ,
1169
+ path : cwd. join ( "src/test " ) ,
1170
+ doc_step : "doc-test " . to_string ( ) ,
1171
+ build_step : "build-crate-test " . to_string ( ) ,
1172
+ test_step : "test-test " . to_string ( ) ,
1173
+ bench_step : "bench-test " . to_string ( ) ,
1174
1174
} ) ;
1175
1175
build. crates . insert ( "rustc-main" . to_string ( ) , :: Crate {
1176
1176
name : "rustc-main" . to_string ( ) ,
@@ -1360,7 +1360,7 @@ mod tests {
1360
1360
let all = rules. expand ( & plan) ;
1361
1361
println ! ( "all rules: {:#?}" , all) ;
1362
1362
assert ! ( !all. contains( & step. name( "rustc" ) ) ) ;
1363
- assert ! ( !all. contains( & step. name( "build-crate-std_shim " ) . stage( 1 ) ) ) ;
1363
+ assert ! ( !all. contains( & step. name( "build-crate-std " ) . stage( 1 ) ) ) ;
1364
1364
1365
1365
// all stage0 compiles should be for the build target, A
1366
1366
for step in all. iter ( ) . filter ( |s| s. stage == 0 ) {
@@ -1425,7 +1425,7 @@ mod tests {
1425
1425
1426
1426
assert ! ( !plan. iter( ) . any( |s| s. name. contains( "rustc" ) ) ) ;
1427
1427
assert ! ( plan. iter( ) . all( |s| {
1428
- !s. name. contains( "test_shim " ) || s. target == "C"
1428
+ !s. name. contains( "test " ) || s. target == "C"
1429
1429
} ) ) ;
1430
1430
}
1431
1431
0 commit comments