File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,18 @@ environment:
19
19
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-profiler
20
20
SCRIPT : python x.py test
21
21
- MSYS_BITS : 32
22
- RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc --target=i686-pc-windows-msvc
23
- SCRIPT : python x.py test --host i686-pc-windows-msvc --target i686-pc-windows-msvc
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
24
+ - MSYS_BITS : 32
25
+ RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc
26
+ SCRIPT : python x.py test src/test/run-pass src/test/compile-fail
24
27
25
28
# MSVC aux tests
26
29
- MSYS_BITS : 64
27
- RUST_CHECK_TARGET : check-aux
30
+ RUST_CHECK_TARGET : check-aux AUX_ARGS="--exclude src/tools/cargotest --exclude src/tools/cargo"
31
+ RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
32
+ - MSYS_BITS : 64
33
+ SCRIPT : python x.py test src/tools/cargotest src/tools/cargo
28
34
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
29
35
30
36
# MSVC tools tests
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ check-aux:
60
60
src/test/run-pass-valgrind/pretty \
61
61
src/test/run-pass-fulldeps/pretty \
62
62
src/test/run-fail-fulldeps/pretty \
63
+ $(AUX_ARGS ) \
63
64
$(BOOTSTRAP_ARGS )
64
65
check-bootstrap :
65
66
$(Q )$(CFG_PYTHON ) $(CFG_SRC_DIR ) src/bootstrap/bootstrap_test.py
Original file line number Diff line number Diff line change 104
104
travis_fold start " make-$1 "
105
105
travis_time_start
106
106
echo " make -j $ncpus $1 "
107
- make -j $ncpus " $1 "
107
+ make -j $ncpus $1
108
108
local retval=$?
109
109
travis_fold end " make-$1 "
110
110
travis_time_finish
You can’t perform that action at this time.
0 commit comments