aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-01-11 21:25:17 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-01-12 10:52:09 +0900
commit236678b823d304e7b4c32cd8470af487f38920ce (patch)
treefdd4c2ef99c99b548c267230e1428d507dcd575b /test
parent8ccbca262352f282c9d8a06538cfe2dd20c31410 (diff)
downloadruby-236678b823d304e7b4c32cd8470af487f38920ce.tar.gz
[ruby/open3] Use omit instead of skip for test-unit
https://github.com/ruby/open3/commit/f6ca124b56
Diffstat (limited to 'test')
-rw-r--r--test/test_open3.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_open3.rb b/test/test_open3.rb
index 36ccd4c9e2..a06697a37b 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -95,7 +95,7 @@ class TestOpen3 < Test::Unit::TestCase
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]")