aboutsummaryrefslogtreecommitdiff
path: root/tests/shutdowntest.bat
blob: 46db6e8e5b4b84d345a3b528fda4d33b6d821e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
setlocal enabledelayedexpansion
REM	shutdowntest.bat

set shutdowntest_bin=%1
set shutdowntest_bin=%shutdowntest_bin:/=\%
if not exist %shutdowntest_bin% exit /b 1

%shutdowntest_bin% %srcdir%\server.pem %srcdir%\server.pem %srcdir%\ca.pem
if !errorlevel! neq 0 (
	exit /b 1
)

endlocal