We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b497d9 commit 2ce855bCopy full SHA for 2ce855b
src/test/ruby/ssl/test_ssl.rb
@@ -83,6 +83,10 @@ def test_post_connection_check
83
end
84
85
def test_ssl_version_sslv3
86
+ skip('Disable SSLv3 test in CI as it currently fails on some JVM versions') unless ENV['CI'].nil?
87
+ # This test appears to fail on Oracle JDK 1.7.0_76 but not Oracle JDK 1.6.0_65
88
+ # The test (client) reports Connection reset by peer
89
+ # The server reports "No appropriate protocol (protocol is disabled or cipher suites are inappropriate)"
90
ctx_proc = Proc.new do |ctx|
91
ctx.ssl_version = "SSLv3"
92
0 commit comments