Overview
Comment: | Fix 4 testcases |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | bohagan |
Files: | files | file ages | folders |
SHA3-256: |
a0338bae6456a884d584106b82c0c849 |
User & Date: | jan.nijtmans on 2024-02-27 21:24:09 |
Other Links: | branch diff | manifest | tags |
Context
2024-03-05
| ||
13:57 | Merge trunk check-in: b2b78ae91b user: jan.nijtmans tags: bohagan | |
2024-02-27
| ||
21:24 | Fix 4 testcases check-in: a0338bae64 user: jan.nijtmans tags: bohagan | |
16:29 | Take over change in tls.c too (from same commit) check-in: eecbce78ef user: jan.nijtmans tags: bohagan | |
Changes
Modified tests/badssl.test from [4b748d171a] to [f607619273].
︙ | ︙ | |||
25 26 27 28 29 30 31 | test BadSSL-1.2 {10000-sans} -body { badssl 10000-sans.badssl.com } -result {handshake failed: excessive message size} -returnCodes {1} test BadSSL-1.3 {3des} -body { badssl 3des.badssl.com | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | test BadSSL-1.2 {10000-sans} -body { badssl 10000-sans.badssl.com } -result {handshake failed: excessive message size} -returnCodes {1} test BadSSL-1.3 {3des} -body { badssl 3des.badssl.com } -result {handshake failed: ssl/tls alert handshake failure} -returnCodes {1} test BadSSL-1.4 {captive-portal} -constraints {old_api} -body { badssl captive-portal.badssl.com } -result {handshake failed: certificate verify failed due to "Hostname mismatch"} -returnCodes {1} test BadSSL-1.5 {captive-portal} -constraints {new_api} -body { badssl captive-portal.badssl.com |
︙ | ︙ | |||
149 150 151 152 153 154 155 | test BadSSL-1.33 {no-subject} -body { badssl no-subject.badssl.com } -result {handshake failed: certificate verify failed due to "certificate has expired"} -returnCodes {1} test BadSSL-1.34 {null} -body { badssl null.badssl.com | | | | | 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | test BadSSL-1.33 {no-subject} -body { badssl no-subject.badssl.com } -result {handshake failed: certificate verify failed due to "certificate has expired"} -returnCodes {1} test BadSSL-1.34 {null} -body { badssl null.badssl.com } -result {handshake failed: ssl/tls alert handshake failure} -returnCodes {1} test BadSSL-1.35 {pinning-test} -body { badssl pinning-test.badssl.com } test BadSSL-1.36 {preact-cli} -body { badssl preact-cli.badssl.com } -result {handshake failed: certificate verify failed due to "unable to get local issuer certificate"} -returnCodes {1} test BadSSL-1.37 {preloaded-hsts} -body { badssl preloaded-hsts.badssl.com } test BadSSL-1.38 {rc4-md5} -body { badssl rc4-md5.badssl.com } -result {handshake failed: ssl/tls alert handshake failure} -returnCodes {1} test BadSSL-1.39 {rc4} -body { badssl rc4.badssl.com } -result {handshake failed: ssl/tls alert handshake failure} -returnCodes {1} test BadSSL-1.40 {revoked} -body { badssl revoked.badssl.com } -result {handshake failed: certificate verify failed due to "certificate has expired"} -returnCodes {1} test BadSSL-1.41 {rsa2048} -body { badssl rsa2048.badssl.com |
︙ | ︙ |