File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ environment:
20
20
SCRIPT : python x.py test
21
21
- MSYS_BITS : 32
22
22
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
23
- SCRIPT : python x.py test --exclude src/test/run-pass --exclude src/test/compile-fail
23
+ SCRIPT : make appveyor-subset-1
24
24
- MSYS_BITS : 32
25
25
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
26
- SCRIPT : python x.py test src/test/run-pass src/test/compile-fail
26
+ SCRIPT : make appveyor-subset-2
27
27
28
28
# MSVC aux tests
29
29
- MSYS_BITS : 64
@@ -53,13 +53,13 @@ environment:
53
53
# SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
54
54
- MSYS_BITS : 32
55
55
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
56
- SCRIPT : python x.py test --exclude src/test/run-pass --exclude src/test/compile-fail
56
+ SCRIPT : make appveyor-subset-1
57
57
MINGW_URL : https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
58
58
MINGW_ARCHIVE : i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
59
59
MINGW_DIR : mingw32
60
60
- MSYS_BITS : 32
61
61
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-gnu
62
- SCRIPT : python x.py test src/test/run-pass src/test/compile-fail
62
+ SCRIPT : make appveyor-subset-2
63
63
MINGW_URL : https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
64
64
MINGW_ARCHIVE : i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
65
65
MINGW_DIR : mingw32
Original file line number Diff line number Diff line change @@ -85,5 +85,12 @@ check-stage2-T-arm-linux-androideabi-H-x86_64-unknown-linux-gnu:
85
85
check-stage2-T-x86_64-unknown-linux-musl-H-x86_64-unknown-linux-gnu :
86
86
$(Q )$(BOOTSTRAP ) test --target x86_64-unknown-linux-musl
87
87
88
+ TESTS_IN_2 := src/test/run-pass src/test/compile-fail src/test/run-pass-fulldeps
89
+
90
+ appveyor-subset-1 :
91
+ $(Q )$(BOOTSTRAP ) test $(TESTS_IN_2:%=--exclude % )
92
+ appveyor-subset-2 :
93
+ $(Q )$(BOOTSTRAP ) test $(TESTS_IN_2 )
94
+
88
95
89
96
.PHONY : dist
You can’t perform that action at this time.
0 commit comments