blob: fa0ae42f7eecd8a2ec321a0e0b531a6ec7b234e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@echo off
setlocal enabledelayedexpansion
REM ocsptest.bat
set TEST=Debug\ocsp_test.exe
if not exist %TEST% exit /b 1
%TEST% www.amazon.com 443 & if !errorlevel! neq 0 exit /b 1
%TEST% cloudflare.com 443 & if !errorlevel! neq 0 exit /b 1
endlocal
|