blob: a21ea896ff5bd6dcf8c5038377e490adceaa7cc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|