start to enable tlstest for portable

Disabled on Windows for now due to pipe2/socketpair support.
This commit is contained in:
Brent Cook
2017-01-13 09:10:59 -06:00
parent 1d934cd2d8
commit fa20dae329
5 changed files with 53 additions and 3 deletions

14
tests/tlstest.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
setlocal enabledelayedexpansion
REM tlstest.bat
set tlstest_bin=Debug\tlstest.exe
if not exist %tlstest_bin% exit /b 1
if "%srcdir%"=="" (
set srcdir=.
)
%tlstest_bin% %srcdir%\server.pem %srcdir%\server.pem %srcdir%\ca.pem
endlocal