X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=ms%2Ftest.bat;h=8f6919428324fb5ee213b9f9b4834e5bbf13f13f;hb=21023745e248c8e03273a063e0c99cbe86cb9cea;hp=e2779de2a931d5245ed4d9dd06fd29ca4d41e01d;hpb=35f7324c237b9b5ee46a04b88a6020173d3c66b1;p=openssl.git diff --git a/ms/test.bat b/ms/test.bat index e2779de2a9..8f69194283 100755 --- a/ms/test.bat +++ b/ms/test.bat @@ -1,4 +1,4 @@ -@echo=off +@echo off set test=..\ms set opath=%PATH% @@ -7,8 +7,8 @@ set OPENSSL_CONF=..\apps\openssl.cnf rem run this from inside the bin directory -echo rsa_oaep_test -rsa_oaep_test +echo rsa_test +rsa_test if errorlevel 1 goto done echo destest @@ -91,7 +91,7 @@ echo test sslv2 with server authentication ssltest -ssl2 -server_auth -CAfile cert.tmp if errorlevel 1 goto done -echo test sslv2 with client authentication +echo test sslv2 with client authentication ssltest -ssl2 -client_auth -CAfile cert.tmp if errorlevel 1 goto done @@ -107,7 +107,7 @@ echo test sslv3 with server authentication ssltest -ssl3 -server_auth -CAfile cert.tmp if errorlevel 1 goto done -echo test sslv3 with client authentication +echo test sslv3 with client authentication ssltest -ssl3 -client_auth -CAfile cert.tmp if errorlevel 1 goto done @@ -123,7 +123,7 @@ echo test sslv2/sslv3 with server authentication ssltest -server_auth -CAfile cert.tmp if errorlevel 1 goto done -echo test sslv2/sslv3 with client authentication +echo test sslv2/sslv3 with client authentication ssltest -client_auth -CAfile cert.tmp if errorlevel 1 goto done @@ -131,6 +131,57 @@ echo test sslv2/sslv3 with both client and server authentication ssltest -server_auth -client_auth -CAfile cert.tmp if errorlevel 1 goto done +echo test sslv2 via BIO pair +ssltest -bio_pair -ssl2 +if errorlevel 1 goto done + +echo test sslv2/sslv3 with 1024 bit DHE via BIO pair +ssltest -bio_pair -dhe1024dsa -v +if errorlevel 1 goto done + +echo test sslv2 with server authentication via BIO pair +ssltest -bio_pair -ssl2 -server_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv2 with client authentication via BIO pair +ssltest -bio_pair -ssl2 -client_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv2 with both client and server authentication via BIO pair +ssltest -bio_pair -ssl2 -server_auth -client_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv3 via BIO pair +ssltest -bio_pair -ssl3 +if errorlevel 1 goto done + +echo test sslv3 with server authentication via BIO pair +ssltest -bio_pair -ssl3 -server_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv3 with client authentication via BIO pair +ssltest -bio_pair -ssl3 -client_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv3 with both client and server authentication via BIO pair +ssltest -bio_pair -ssl3 -server_auth -client_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv2/sslv3 via BIO pair +ssltest +if errorlevel 1 goto done + +echo test sslv2/sslv3 with server authentication +ssltest -bio_pair -server_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv2/sslv3 with client authentication via BIO pair +ssltest -bio_pair -client_auth -CAfile cert.tmp +if errorlevel 1 goto done + +echo test sslv2/sslv3 with both client and server authentication via BIO pair +ssltest -bio_pair -server_auth -client_auth -CAfile cert.tmp +if errorlevel 1 goto done del cert.tmp