From dc5512243bb8333cd031d0bf50c4fb245d6ad93f Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 22 Oct 2021 15:51:16 +0900 Subject: [PATCH] [ruby/io-wait] Disable ractor test which is meaningless on earlier versions https://github.com/ruby/io-wait/commit/e8e1e99d4c --- test/io/wait/test_ractor.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/io/wait/test_ractor.rb b/test/io/wait/test_ractor.rb index 3d286af77f..3742680cf7 100644 --- a/test/io/wait/test_ractor.rb +++ b/test/io/wait/test_ractor.rb @@ -4,10 +4,6 @@ require 'rbconfig' require 'io/wait' class TestIOWaitInRactor < Test::Unit::TestCase - def setup - omit unless defined? Ractor - end - def test_ractor ext = "/io/wait.#{RbConfig::CONFIG['DLEXT']}" path = $".find {|path| path.end_with?(ext)} @@ -19,4 +15,4 @@ class TestIOWaitInRactor < Test::Unit::TestCase puts r.take end; end -end +end if defined? Ractor