summaryrefslogtreecommitdiff
path: root/appveyor/test.bat
blob: 97c526399abe977d2dd4cf4d826980d6b78e85cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@echo off

set SDK_RUNNER=%PHP_BUILD_CACHE_SDK_DIR%\phpsdk-%PHP_BUILD_CRT%-%PLATFORM%.bat
if not exist "%SDK_RUNNER%" (
	echo "%SDK_RUNNER%" doesn't exist
	exit /b 3
)

call %SDK_RUNNER% -t %APPVEYOR_BUILD_FOLDER%\appveyor\test_task.bat

exit /b %errorlevel%