diff options
author | Alexis Campailla <alexis@janeasystems.com> | 2015-08-26 12:41:16 +0200 |
---|---|---|
committer | Alexis Campailla <alexis@janeasystems.com> | 2015-08-27 05:49:46 +0200 |
commit | e822a4b7834b09f3428b2a90242ed346120da076 (patch) | |
tree | c3ebc14e8efe8a92d1b56985cb1277aaf474e4b0 /vcbuild.bat | |
parent | 6195b46ed84d9090d1550884a72edeabb62f189b (diff) | |
download | node-new-e822a4b7834b09f3428b2a90242ed346120da076.tar.gz |
test: pass args to test-ci via env variable
PR-URL: https://github.com/nodejs/node/pull/2424
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: João Reis <reis@janeasystems.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r-- | vcbuild.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcbuild.bat b/vcbuild.bat index 4ebb0ede00..056a1c7f04 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -54,7 +54,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 message sequential parallel&goto arg-ok +if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap message sequential parallel&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 |