Omit test_session_reuse_but_expire if OpenSSL 3.2.0

This commit is contained in:
Nobuyoshi Nakada 2023-11-26 01:18:48 +09:00
parent b93a1bb40b
commit 1b7376423d
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -167,7 +167,7 @@ class TestNetHTTPS < Test::Unit::TestCase
def test_session_reuse_but_expire
# FIXME: The new_session_cb is known broken for clients in OpenSSL 1.1.0h.
omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 1.1.0h')
omit 'failing on MinGW' if /mingw/ =~ RUBY_PLATFORM
omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 3.2.0')
http = Net::HTTP.new(HOST, config("port"))
http.use_ssl = true