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

ruby-changes:70831

From: Hiroshi <ko1@a...>
Date: Wed, 12 Jan 2022 11:03:21 +0900 (JST)
Subject: [ruby-changes:70831] 236678b823 (master): [ruby/open3] Use omit instead of skip for test-unit

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

From 236678b823d304e7b4c32cd8470af487f38920ce Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Tue, 11 Jan 2022 21:25:17 +0900
Subject: [ruby/open3] Use omit instead of skip for test-unit

https://github.com/ruby/open3/commit/f6ca124b56
---
 test/test_open3.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test_open3.rb b/test/test_open3.rb
index 36ccd4c9e26..a06697a37b1 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -95,7 +95,7 @@ class TestOpen3 < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/test_open3.rb#L95
   end
 
   def test_numeric_file_descriptor3
-    skip "passing FDs bigger than 2 is not supported on Windows" if /mswin|mingw/ =~ RbConfig::CONFIG['host_os']
+    omit "passing FDs bigger than 2 is not supported on Windows" if /mswin|mingw/ =~ RbConfig::CONFIG['host_os']
     with_pipe {|r, w|
       Open3.popen3(RUBY, '-e', 'IO.open(3).puts "foo"', 3 => w) {|i,o,e,t|
         assert_equal("foo\n", r.gets, "[GH-808] [ruby-core:67347] [Bug #10699]")
-- 
cgit v1.2.1


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

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