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
path: root/tools
diff options
context:
space:
mode:
authorKunal Pathak <kpathak@microsoft.com>2017-06-29 01:24:52 +0300
committerAnna Henningsen <anna@addaleax.net>2017-07-28 00:48:51 +0300
commit7f5bcbd2e95c8a466481676d0788b89c73d1326d (patch)
treef4a9daab47e1265e6a70e7987e82f279dc19292f /tools
parent60e0f2bb0ddd51a0d3e89f153ae7887930f27d2e (diff)
build,test: run v8 tests on windows
`vcbuild.bat test-v8` : Runs unit test from v8 repo `vcbuild.bat test-v8-intl` : Runs intl test from v8 repo `vcbuild.bat test-v8` : Runs benchmarks from v8 repo The runs needs https://www.chromium.org/developers/how-tos/install-depot-tools installed on the machine expects environment variable `DEPOT_TOOLS_PATH` to be set to the path. Set environment variable `DISABLE_V8_I18N` to disable i18n. PR-URL: https://github.com/nodejs/node/pull/13992 Refs: https://github.com/nodejs/node/pull/4704 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/test-v8.bat45
1 files changed, 45 insertions, 0 deletions
diff --git a/tools/test-v8.bat b/tools/test-v8.bat
new file mode 100644
index 00000000000..d322c31a38d
--- /dev/null
+++ b/tools/test-v8.bat
@@ -0,0 +1,45 @@
+if not defined DEPOT_TOOLS_PATH goto depot-tools-not-found
+if "%config%"=="Debug" set test_args=%target_arch%.debug
+if "%config%"=="Release" set test_args=%target_arch%.release
+set savedpath=%path%
+set path=%DEPOT_TOOLS_PATH%;%path%
+pushd .
+
+set ERROR_STATUS=0
+echo calling: tools\make-v8.sh
+sh tools\make-v8.sh
+if errorlevel 1 set ERROR_STATUS=1&goto test-v8-exit
+cd %~dp0
+cd deps\v8
+echo running 'python tools\dev\v8gen.py %test_args%'
+call python tools\dev\v8gen.py %test_args%
+if errorlevel 1 set ERROR_STATUS=1&goto test-v8-exit
+echo running 'ninja -C out.gn/%test_args% %v8_build_options%'
+call ninja -C out.gn/%test_args% %v8_build_options%
+if errorlevel 1 set ERROR_STATUS=1&goto test-v8-exit
+set path=%savedpath%
+
+if not defined test_v8 goto test-v8-intl
+echo running 'python tools\run-tests.py %common_v8_test_options% %v8_test_options% --junitout ./v8-tap.xml'
+call python tools\run-tests.py %common_v8_test_options% %v8_test_options% --junitout ./v8-tap.xml
+
+:test-v8-intl
+if not defined test_v8_intl goto test-v8-benchmarks
+echo running 'python tools\run-tests.py %common_v8_test_options% intl --junitout ./v8-intl-tap.xml'
+call python tools\run-tests.py %common_v8_test_options% intl --junitout ./v8-intl-tap.xml
+
+:test-v8-benchmarks
+if not defined test_v8_benchmarks goto test-v8-exit
+echo running 'python tools\run-tests.py %common_v8_test_options% benchmarks --junitout ./v8-benchmarks-tap.xml'
+call python tools\run-tests.py %common_v8_test_options% benchmarks --junitout ./v8-benchmarks-tap.xml
+goto test-v8-exit
+
+:test-v8-exit
+popd
+if defined savedpath set path=%savedpath%
+exit /b %ERROR_STATUS%
+
+:depot-tools-not-found
+echo Failed to find a suitable depot tools to test v8
+exit /b 1
+