# HG changeset patch # User Maxim Dounin # Date 1679590206 -10800 # Node ID a68d1313c3fc973f45a837b92f59e3f6e842aa33 # Parent 0c5f0c016d2b2d16dd0b812a65311f001a645dc9 Tests: disabled ssl_sni_sessions.t with LibreSSL and BoringSSL. With TLSv1.3, LibreSSL does not provide session reuse at all, and BoringSSL only supports session tickets, and not server-side session cache. Since the test is focused on session cache usage, it is now skipped. diff --git a/ssl_sni_sessions.t b/ssl_sni_sessions.t --- a/ssl_sni_sessions.t +++ b/ssl_sni_sessions.t @@ -130,6 +130,12 @@ foreach my $name ('localhost') { plan(skip_all => 'no TLS 1.3 sessions') if get('default', port(8443), get_ssl_context()) =~ /TLSv1.3/ && ($Net::SSLeay::VERSION < 1.88 || $IO::Socket::SSL::VERSION < 2.061); +plan(skip_all => 'no TLS 1.3 sessions in LibreSSL') + if get('default', port(8443), get_ssl_context()) =~ /TLSv1.3/ + && $t->has_module('LibreSSL'); +plan(skip_all => 'no TLS 1.3 session cache in BoringSSL') + if get('default', port(8443), get_ssl_context()) =~ /TLSv1.3/ + && $t->has_module('BoringSSL'); $t->plan(6);