From 547213913b2e1525c15968916452995ab14e2195 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Sun, 26 Apr 2015 20:59:45 +1000 Subject: [PATCH] test: adjust Makefile/test-ci, add to vcbuild.bat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/iojs/io.js/pull/1530 Reviewed-By: Johan Bergström --- Makefile | 4 +++- vcbuild.bat | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28fd263c94eb9c..c714e95a857c28 100644 --- a/Makefile +++ b/Makefile @@ -112,7 +112,9 @@ test-all-valgrind: test-build $(PYTHON) tools/test.py --mode=debug,release --valgrind test-ci: - $(PYTHON) tools/test.py -p tap --logfile test.tap -J parallel sequential message + $(PYTHON) tools/test.py -p tap --logfile test.tap --mode=release -J message parallel sequential + $(MAKE) jslint + $(MAKE) cpplint test-release: test-build $(PYTHON) tools/test.py --mode=release diff --git a/vcbuild.bat b/vcbuild.bat index 44d149d32241b4..2cf94ad5fdf370 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -52,6 +52,7 @@ if /i "%1"=="noetw" set noetw=1&goto arg-ok if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok if /i "%1"=="licensertf" set licensertf=1&goto arg-ok if /i "%1"=="test" set test_args=%test_args% sequential parallel message -J&set jslint=1&goto arg-ok +if /i "%1"=="test-ci" set test_args=%test_args% -p tap --logfile test.tap -J message sequential parallel&set jslint=1&goto arg-ok if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel -J&goto arg-ok if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok if /i "%1"=="test-gc" set test_args=%test_args% gc&set buildnodeweak=1&goto arg-ok