mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/drb] Use omit instead of skip for test-unit
https://github.com/ruby/drb/commit/0da149e7a9
This commit is contained in:
parent
3be987653a
commit
f6c3228794
1 changed files with 3 additions and 3 deletions
|
@ -214,9 +214,9 @@ module DRbCore
|
|||
end
|
||||
|
||||
def test_06_timeout
|
||||
skip if RUBY_PLATFORM.include?("armv7l-linux")
|
||||
skip if RUBY_PLATFORM.include?("sparc-solaris2.10")
|
||||
skip if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? # expecting a certain delay is difficult for --jit-wait CI
|
||||
omit if RUBY_PLATFORM.include?("armv7l-linux")
|
||||
omit if RUBY_PLATFORM.include?("sparc-solaris2.10")
|
||||
omit if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? # expecting a certain delay is difficult for --jit-wait CI
|
||||
Timeout.timeout(60) do
|
||||
ten = Onecky.new(10)
|
||||
assert_raise(Timeout::Error) do
|
||||
|
|
Loading…
Add table
Reference in a new issue