summaryrefslogtreecommitdiff
path: root/vcbuild.bat
diff options
context:
space:
mode:
authorAlexis Campailla <alexis@janeasystems.com>2015-08-26 12:38:48 +0200
committerAlexis Campailla <alexis@janeasystems.com>2015-08-27 05:49:37 +0200
commit6195b46ed84d9090d1550884a72edeabb62f189b (patch)
tree612042da9f77010706eaaf835d75ac9746983743 /vcbuild.bat
parentff05953b8d25d9e6db678b574008de8699005a9e (diff)
downloadnode-new-6195b46ed84d9090d1550884a72edeabb62f189b.tar.gz
test: support flaky tests in test-ci
Adding support for specifying flaky test mode to the test runner: - via an environment variable FLAKY_TESTS for Makefile - via an argument ignore-flaky for vcbuild.bat Ported from https://github.com/joyent/node/commit/2d2494cf140c38327218a087593ff2177a9d0ec9 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.bat1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 1073a3e588..4ebb0ede00 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -70,6 +70,7 @@ if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok
if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok
if /i "%1"=="intl-none" set i18n_arg=%1&goto arg-ok
if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
+if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok
echo Warning: ignoring invalid command line option `%1`.