summaryrefslogtreecommitdiff
path: root/test/drb/test_drbssl.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2022-11-19 21:13:05 -0800
committerTakashi Kokubun <[email protected]>2022-11-19 21:14:08 -0800
commit1284baec12c57474fa4dc4f456cdf50199fdab9e (patch)
tree2404e0a4a8caa332281563e42e80b8f740b40289 /test/drb/test_drbssl.rb
parente0f0367ab5d3504e741bd6b89d6eea7c93a94327 (diff)
Skip TestDRbSSLAry on mswin
This doesn't seem to stably work on mswin: https://github.com/ruby/ruby/actions/runs/3505363753/jobs/5871633211 For CI stability, it generally seems like a bad idea to run druby tests on Windows, given that it's pretty much unstable on MinGW as well.
Diffstat (limited to 'test/drb/test_drbssl.rb')
-rw-r--r--test/drb/test_drbssl.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/drb/test_drbssl.rb b/test/drb/test_drbssl.rb
index 4369c6614b..c080c2f7b8 100644
--- a/test/drb/test_drbssl.rb
+++ b/test/drb/test_drbssl.rb
@@ -63,6 +63,10 @@ end
class TestDRbSSLAry < Test::Unit::TestCase
include DRbAry
def setup
+ if RUBY_PLATFORM.match?(/mswin/)
+ @omitted = true
+ omit 'This test seems to randomly hang on GitHub Actions mswin'
+ end
LeakChecker.skip if defined?(LeakChecker)
@drb_service = DRbSSLService.new
super