Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-07-20 07:13:13 +0300
committerRich Trott <rtrott@gmail.com>2020-07-22 20:17:07 +0300
commit3caa2e256bd403e0fb06cfbefc0338462f2c60d9 (patch)
tree0da2454fee6a08dc6298a7c79387ae741bf173e6 /vcbuild.bat
parent90ee98a7d14829a6c7c6fc6e1700e58c3c25b92d (diff)
build: do not run benchmark tests on 'make test'
Fixes: https://github.com/nodejs/node/issues/34427 PR-URL: https://github.com/nodejs/node/pull/34434 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat8
1 files changed, 5 insertions, 3 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 78dd6214a55..ac4c604aa80 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -15,12 +15,14 @@ if /i "%1"=="/?" goto help
cd %~dp0
+set JS_SUITES=default
+set NATIVE_SUITES=addons js-native-api node-api
@rem CI_* variables should be kept synchronized with the ones in Makefile
-set CI_NATIVE_SUITES=addons js-native-api node-api
-set CI_JS_SUITES=default benchmark
+set "CI_NATIVE_SUITES=%NATIVE_SUITES%"
+set "CI_JS_SUITES=%JS_SUITES% benchmark"
set CI_DOC=doctool
@rem Same as the test-ci target in Makefile
-set "common_test_suites=%CI_JS_SUITES% %CI_NATIVE_SUITES% %CI_DOC%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1"
+set "common_test_suites=%JS_SUITES% %NATIVE_SUITES%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1"
@rem Process arguments.
set config=Release