comparison ssl_certificate.t @ 1987:a095b971fbcc default tip

Tests: removed TODO and try_run() checks for legacy versions. For h2_http2.t, try_run() is preserved to ensure that deprecation warnings for "listen ... http2" are suppressed, yet plan() is reported before try_run(), so failure to start will be properly reported.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 04 Jun 2024 18:38:01 +0300
parents b5036a0f9ae0
children
comparison
equal deleted inserted replaced
1986:11463d379570 1987:a095b971fbcc
177 177
178 like(get('default', 8080, $s), qr/default:r/, 'session reused'); 178 like(get('default', 8080, $s), qr/default:r/, 'session reused');
179 179
180 TODO: { 180 TODO: {
181 # ticket key name mismatch prevents session resumption 181 # ticket key name mismatch prevents session resumption
182 local $TODO = 'not yet' unless $t->has_version('1.23.2');
183 local $TODO = 'no SSL_session_key, old IO::Socket::SSL' 182 local $TODO = 'no SSL_session_key, old IO::Socket::SSL'
184 if $IO::Socket::SSL::VERSION < 1.965; 183 if $IO::Socket::SSL::VERSION < 1.965;
185 184
186 like(get('default', 8081, $s), qr/default:r/, 'session id context match'); 185 like(get('default', 8081, $s), qr/default:r/, 'session id context match');
187 186