@@ -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" ) )
@@ -601,13 +601,13 @@ pub fn build_rules<'a>(build: &'a Build) -> Rules {
601
601
. default ( build. config . docs )
602
602
. host ( true )
603
603
. run ( move |s| doc:: error_index ( build, s. target ) ) ;
604
- for ( krate, path, default) in krates ( "std_shim " ) {
604
+ for ( krate, path, default) in krates ( "std " ) {
605
605
rules. doc ( & krate. doc_step , path)
606
606
. dep ( |s| s. name ( "libstd-link" ) )
607
607
. default ( default && build. config . docs )
608
608
. run ( move |s| doc:: std ( build, s. stage , s. target ) ) ;
609
609
}
610
- for ( krate, path, default) in krates ( "test_shim " ) {
610
+ for ( krate, path, default) in krates ( "test " ) {
611
611
rules. doc ( & krate. doc_step , path)
612
612
. dep ( |s| s. name ( "libtest-link" ) )
613
613
. default ( default && build. config . compiler_docs )
@@ -1172,23 +1172,23 @@ mod tests {
1172
1172
1173
1173
let mut build = Build :: new ( flags, config) ;
1174
1174
let cwd = env:: current_dir ( ) . unwrap ( ) ;
1175
- build. crates . insert ( "std_shim " . to_string ( ) , :: Crate {
1176
- name : "std_shim " . to_string ( ) ,
1175
+ build. crates . insert ( "std " . to_string ( ) , :: Crate {
1176
+ name : "std " . to_string ( ) ,
1177
1177
deps : Vec :: new ( ) ,
1178
- path : cwd. join ( "src/std_shim " ) ,
1179
- doc_step : "doc-std_shim " . to_string ( ) ,
1180
- build_step : "build-crate-std_shim " . to_string ( ) ,
1181
- test_step : "test-std_shim " . to_string ( ) ,
1182
- bench_step : "bench-std_shim " . to_string ( ) ,
1178
+ path : cwd. join ( "src/std " ) ,
1179
+ doc_step : "doc-std " . to_string ( ) ,
1180
+ build_step : "build-crate-std " . to_string ( ) ,
1181
+ test_step : "test-std " . to_string ( ) ,
1182
+ bench_step : "bench-std " . to_string ( ) ,
1183
1183
} ) ;
1184
- build. crates . insert ( "test_shim " . to_string ( ) , :: Crate {
1185
- name : "test_shim " . to_string ( ) ,
1184
+ build. crates . insert ( "test " . to_string ( ) , :: Crate {
1185
+ name : "test " . to_string ( ) ,
1186
1186
deps : Vec :: new ( ) ,
1187
- path : cwd. join ( "src/test_shim " ) ,
1188
- doc_step : "doc-test_shim " . to_string ( ) ,
1189
- build_step : "build-crate-test_shim " . to_string ( ) ,
1190
- test_step : "test-test_shim " . to_string ( ) ,
1191
- bench_step : "bench-test_shim " . to_string ( ) ,
1187
+ path : cwd. join ( "src/test " ) ,
1188
+ doc_step : "doc-test " . to_string ( ) ,
1189
+ build_step : "build-crate-test " . to_string ( ) ,
1190
+ test_step : "test-test " . to_string ( ) ,
1191
+ bench_step : "bench-test " . to_string ( ) ,
1192
1192
} ) ;
1193
1193
build. crates . insert ( "rustc-main" . to_string ( ) , :: Crate {
1194
1194
name : "rustc-main" . to_string ( ) ,
@@ -1378,7 +1378,7 @@ mod tests {
1378
1378
let all = rules. expand ( & plan) ;
1379
1379
println ! ( "all rules: {:#?}" , all) ;
1380
1380
assert ! ( !all. contains( & step. name( "rustc" ) ) ) ;
1381
- assert ! ( !all. contains( & step. name( "build-crate-std_shim " ) . stage( 1 ) ) ) ;
1381
+ assert ! ( !all. contains( & step. name( "build-crate-std " ) . stage( 1 ) ) ) ;
1382
1382
1383
1383
// all stage0 compiles should be for the build target, A
1384
1384
for step in all. iter ( ) . filter ( |s| s. stage == 0 ) {
@@ -1443,7 +1443,7 @@ mod tests {
1443
1443
1444
1444
assert ! ( !plan. iter( ) . any( |s| s. name. contains( "rustc" ) ) ) ;
1445
1445
assert ! ( plan. iter( ) . all( |s| {
1446
- !s. name. contains( "test_shim " ) || s. target == "C"
1446
+ !s. name. contains( "test " ) || s. target == "C"
1447
1447
} ) ) ;
1448
1448
}
1449
1449
0 commit comments