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