1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
Hiroshi SHIBATA 2022-09-06 16:02:06 +09:00
parent 03ae415d50
commit 8cd6f2a087
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 3 additions and 0 deletions

View file

@ -217,6 +217,7 @@ module DRbCore
def test_06_timeout
omit if RUBY_PLATFORM.include?("armv7l-linux")
omit if RUBY_PLATFORM.include?("sparc-solaris2.10")
omit if RUBY_PLATFORM.include?("freebsd")
omit if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? # expecting a certain delay is difficult for --jit-wait CI
Timeout.timeout(60) do
ten = Onecky.new(10)

View file

@ -562,6 +562,8 @@ class TestSocket < Test::Unit::TestCase
end
def test_closed_read
omit if RUBY_PLATFORM.include?("freebsd")
require 'timeout'
require 'socket'
bug4390 = '[ruby-core:35203]'