diff options
| author | Xi Ruoyao <xry111@xry111.site> | 2024-04-24 13:42:09 +0800 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-04-30 14:02:50 +0900 |
| commit | 85863f4d4d6f798a3a2afc33be243e5604c222a6 (patch) | |
| tree | 5b1d981cb190810ebb62a8d826d8a4c68433c9f7 | |
| parent | c56cd86388092faec079981f779f140717020d58 (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 <xry111@xry111.site>
https://github.com/ruby/net-http/commit/ab525c956d
| -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 |
