[前][次][番号順一覧][スレッド一覧]

ruby-changes:68155

From: Hiroshi <ko1@a...>
Date: Tue, 28 Sep 2021 19:15:57 +0900 (JST)
Subject: [ruby-changes:68155] f6c3228794 (master): [ruby/drb] Use omit instead of skip for test-unit

https://git.ruby-lang.org/ruby.git/commit/?id=f6c3228794

From f6c32287942ca554a8f422ab19a1336ad9ac1b57 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Sat, 11 Sep 2021 13:43:05 +0900
Subject: [ruby/drb] Use omit instead of skip for test-unit

https://github.com/ruby/drb/commit/0da149e7a9
---
 test/drb/drbtest.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/drb/drbtest.rb b/test/drb/drbtest.rb
index acef380ad6..f3d20201bc 100644
--- a/test/drb/drbtest.rb
+++ b/test/drb/drbtest.rb
@@ -214,9 +214,9 @@ module DRbCore https://github.com/ruby/ruby/blob/trunk/test/drb/drbtest.rb#L214
   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
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]