summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-11-24 21:43:29 -0800
committerTakashi Kokubun <[email protected]>2023-11-24 21:43:34 -0800
commitde37b780508d4ced5837f39446d3c8c93ef9ec7c (patch)
tree31c3838dbc65f1bf60d73d469fdab29f1dd473d9 /test/net
parent7276d4b4e87bfdc9b609f481a734e39c499de253 (diff)
Omit a broken https test on MinGW
This started to reliably fail on MinGW at an irrelevant commit: https://github.com/ruby/ruby/actions/runs/6981002841/job/18997302124 https://github.com/ruby/ruby/actions/runs/6981946473/job/19000104223 https://github.com/ruby/ruby/actions/runs/6983823136/job/19005613809 https://github.com/ruby/ruby/actions/runs/6983912116/job/19005844596 https://github.com/ruby/ruby/actions/runs/6984215921/job/19006649495 https://github.com/ruby/ruby/actions/runs/6984383103/job/19007100446 https://github.com/ruby/ruby/actions/runs/6986489509/job/19012000642 So this failure is not detecting a new bug. Let's skip this until we fix this test for MinGW.
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_https.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb
index 2fb895a8ae..5f9e066b6b 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -167,6 +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
http = Net::HTTP.new(HOST, config("port"))
http.use_ssl = true