Skip to content

Commit 037bdb1

Browse files
committed
restore old test list for testing
1 parent 4193ff8 commit 037bdb1

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/bootstrap/mk/Makefile.in

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,19 @@ ci-msvc: ci-msvc-py ci-msvc-ps1
110110

111111
# Set of tests that should represent half of the time of the test suite.
112112
# Used to split tests across multiple CI runners.
113+
TESTS_IN_MINGW_X := \
114+
tests/ui \
115+
tests/rustdoc \
116+
tests/run-make \
117+
tests/rustdoc-ui \
118+
tests/ui-fulldeps \
119+
tests/rustdoc-json
113120

114121
# test both x and bootstrap entrypoints
115122
ci-mingw-x:
116-
$(Q)$(CFG_SRC_DIR)/x test --stage 2 tests/
123+
$(Q)$(CFG_SRC_DIR)/x test --stage 2 $(TESTS_IN_MINGW_X)
117124
ci-mingw-bootstrap:
118-
$(Q)$(BOOTSTRAP) test --stage 2 --skip tests/
125+
$(Q)$(BOOTSTRAP) test --stage 2 $(TESTS_IN_MINGW_X:%=--skip %)
119126
ci-mingw: ci-mingw-x ci-mingw-bootstrap
120127

121128
.PHONY: dist

0 commit comments

Comments
 (0)