Skip to content

Commit 16cc9ce

Browse files
committed
Fix an error in the appveyor config
1 parent 7c05044 commit 16cc9ce

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ environment:
2727

2828
# MSVC aux tests
2929
- MSYS_BITS: 64
30-
RUST_CHECK_TARGET: check-aux AUX_ARGS="--exclude src/tools/cargotest --exclude src/tools/cargo"
30+
RUST_CHECK_TARGET: check-aux EXCLUDE_CARGO=1
3131
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
3232
- MSYS_BITS: 64
3333
SCRIPT: python x.py test src/tools/cargotest src/tools/cargo

src/bootstrap/mk/Makefile.in

+6-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Q := @
1616
BOOTSTRAP_ARGS :=
1717
endif
1818

19+
ifdef EXCLUDE_CARGO
20+
AUX_ARGS := src/tools/cargo src/tools/cargotest
21+
else
22+
AUX_ARGS :=
23+
endif
24+
1925
BOOTSTRAP := $(CFG_PYTHON) $(CFG_SRC_DIR)src/bootstrap/bootstrap.py
2026

2127
all:
@@ -52,8 +58,6 @@ check:
5258
$(Q)$(BOOTSTRAP) test $(BOOTSTRAP_ARGS)
5359
check-aux:
5460
$(Q)$(BOOTSTRAP) test \
55-
src/tools/cargo \
56-
src/tools/cargotest \
5761
src/test/pretty \
5862
src/test/run-pass/pretty \
5963
src/test/run-fail/pretty \

0 commit comments

Comments
 (0)