summaryrefslogtreecommitdiffstats
path: root/tools/buildsteps/windows/x64/run-tests.bat
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/buildsteps/windows/x64/run-tests.bat13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/buildsteps/windows/x64/run-tests.bat b/tools/buildsteps/windows/x64/run-tests.bat
new file mode 100644
index 0000000..a21ea89
--- /dev/null
+++ b/tools/buildsteps/windows/x64/run-tests.bat
@@ -0,0 +1,13 @@
+@ECHO OFF
+
+PUSHD %~dp0\..
+CALL vswhere.bat x64
+IF ERRORLEVEL 1 (
+ ECHO ERROR! run-tests.bat: Something went wrong when calling vswhere.bat
+ POPD
+ EXIT /B 1
+)
+SET TARGET_PLATFORM=x64
+
+CALL run-tests.bat
+POPD