@echo off
cscript.exe "%~dp0AutomaticTest.vbs" "..\..\CentralLockingSystemNET.cfg" "AutomaticTests.log"

rem Output number of errors in tests, but do not signal to Jenkins
if errorlevel 1 (
 	echo %errorlevel% failed test modules
) else (
	echo all test modules successfully executed
)
exit /b 0
