Skip to content

Commit 7c05044

Browse files
committed
Merge branch 'shard-msvc-more' of https://github.com/alexcrichton/rust into rollup
2 parents a752453 + 7f465ab commit 7c05044

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

appveyor.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@ environment:
1919
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
2020
SCRIPT: python x.py test
2121
- 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
2427

2528
# MSVC aux tests
2629
- 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
2834
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
2935

3036
# MSVC tools tests

src/bootstrap/mk/Makefile.in

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ check-aux:
6060
src/test/run-pass-valgrind/pretty \
6161
src/test/run-pass-fulldeps/pretty \
6262
src/test/run-fail-fulldeps/pretty \
63+
$(AUX_ARGS) \
6364
$(BOOTSTRAP_ARGS)
6465
check-bootstrap:
6566
$(Q)$(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap_test.py

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ else
104104
travis_fold start "make-$1"
105105
travis_time_start
106106
echo "make -j $ncpus $1"
107-
make -j $ncpus "$1"
107+
make -j $ncpus $1
108108
local retval=$?
109109
travis_fold end "make-$1"
110110
travis_time_finish

0 commit comments

Comments
 (0)