diff options
author | Xi Ruoyao <[email protected]> | 2024-04-24 13:42:09 +0800 |
---|---|---|
committer | git <[email protected]> | 2024-04-25 08:01:53 +0000 |
commit | 03f8477566d544c240cd1949fd56d8e42d686aa8 (patch) | |
tree | 38c92f5597185330d63d2cc03b0789785bdc3361 /test/net/http | |
parent | 67dd9af17e5c6c541a8cc84b1741deaf175fcf83 (diff) |
[ruby/net-http] Skip test_session_reuse_but_expire with OpenSSL 3.3
OpenSSL 3.3.0 9 Apr 2024 is also broken.
Signed-off-by: Xi Ruoyao <[email protected]>
https://github.com/ruby/net-http/commit/ab525c956d
Diffstat (limited to 'test/net/http')
-rw-r--r-- | test/net/http/test_https.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb index 6b3171d265..cf297f3755 100644 --- a/test/net/http/test_https.rb +++ b/test/net/http/test_https.rb @@ -168,6 +168,7 @@ class TestNetHTTPS < Test::Unit::TestCase # 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 if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 3.2.') + omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 3.3.') http = Net::HTTP.new(HOST, config("port")) http.use_ssl = true |