File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,6 @@ check-aux:
45
45
src/tools/cargo \
46
46
src/tools/cargotest \
47
47
$(BOOTSTRAP_ARGS )
48
- check-bootstrap :
49
- $(Q )$(CFG_PYTHON ) $(CFG_SRC_DIR ) src/bootstrap/bootstrap_test.py
50
48
dist :
51
49
$(Q )$(BOOTSTRAP ) dist $(BOOTSTRAP_ARGS )
52
50
distcheck :
Original file line number Diff line number Diff line change @@ -2351,6 +2351,10 @@ impl Step for Bootstrap {
2351
2351
2352
2352
/// Tests the build system itself.
2353
2353
fn run ( self , builder : & Builder < ' _ > ) {
2354
+ let mut check_bootstrap = Command :: new ( & builder. python ( ) ) ;
2355
+ check_bootstrap. arg ( "bootstrap_test.py" ) . current_dir ( builder. src . join ( "src/bootstrap/" ) ) ;
2356
+ try_run ( builder, & mut check_bootstrap) ;
2357
+
2354
2358
let mut cmd = Command :: new ( & builder. initial_cargo ) ;
2355
2359
cmd. arg ( "test" )
2356
2360
. current_dir ( builder. src . join ( "src/bootstrap" ) )
Original file line number Diff line number Diff line change @@ -141,8 +141,6 @@ $SRC/configure $RUST_CONFIGURE_ARGS
141
141
142
142
retry make prepare
143
143
144
- make check-bootstrap
145
-
146
144
# Display the CPU and memory information. This helps us know why the CI timing
147
145
# is fluctuating.
148
146
if isMacOS; then
You can’t perform that action at this time.
0 commit comments