| OLD | NEW |
| 1 @echo off | 1 @echo off |
| 2 | 2 |
| 3 set test=..\ms | 3 set test=..\ms |
| 4 set opath=%PATH% | 4 set opath=%PATH% |
| 5 PATH=..\ms;%PATH% | 5 PATH=..\ms;%PATH% |
| 6 set OPENSSL_CONF=..\apps\openssl.cnf | 6 set OPENSSL_CONF=..\apps\openssl.cnf |
| 7 | 7 |
| 8 rem run this from inside the bin directory | 8 rem run this from inside the bin directory |
| 9 | 9 |
| 10 echo rsa_test | 10 echo rsa_test |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 if errorlevel 1 goto done | 28 if errorlevel 1 goto done |
| 29 | 29 |
| 30 echo sha1test | 30 echo sha1test |
| 31 sha1test | 31 sha1test |
| 32 if errorlevel 1 goto done | 32 if errorlevel 1 goto done |
| 33 | 33 |
| 34 echo md5test | 34 echo md5test |
| 35 md5test | 35 md5test |
| 36 if errorlevel 1 goto done | 36 if errorlevel 1 goto done |
| 37 | 37 |
| 38 echo md2test | |
| 39 md2test | |
| 40 if errorlevel 1 goto done | |
| 41 | |
| 42 echo rc2test | 38 echo rc2test |
| 43 rc2test | 39 rc2test |
| 44 if errorlevel 1 goto done | 40 if errorlevel 1 goto done |
| 45 | 41 |
| 46 echo rc4test | 42 echo rc4test |
| 47 rc4test | 43 rc4test |
| 48 if errorlevel 1 goto done | 44 if errorlevel 1 goto done |
| 49 | 45 |
| 50 echo randtest | 46 echo randtest |
| 51 randtest | 47 randtest |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 if errorlevel 1 goto done | 170 if errorlevel 1 goto done |
| 175 | 171 |
| 176 echo test sslv2/sslv3 with client authentication via BIO pair | 172 echo test sslv2/sslv3 with client authentication via BIO pair |
| 177 %SSL_TEST% -bio_pair -client_auth | 173 %SSL_TEST% -bio_pair -client_auth |
| 178 if errorlevel 1 goto done | 174 if errorlevel 1 goto done |
| 179 | 175 |
| 180 echo test sslv2/sslv3 with both client and server authentication via BIO pair | 176 echo test sslv2/sslv3 with both client and server authentication via BIO pair |
| 181 %SSL_TEST% -bio_pair -server_auth -client_auth | 177 %SSL_TEST% -bio_pair -server_auth -client_auth |
| 182 if errorlevel 1 goto done | 178 if errorlevel 1 goto done |
| 183 | 179 |
| 184 | |
| 185 echo passed all tests | 180 echo passed all tests |
| 186 goto end | 181 goto end |
| 187 :done | 182 :done |
| 188 echo problems..... | 183 echo problems..... |
| 189 :end | 184 :end |
| 190 PATH=%opath% | 185 PATH=%opath% |
| OLD | NEW |