From 90fc1ef779adee01058e2f508cf1fca5e17e34dd Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 12 Dec 2018 11:24:15 +0000 Subject: [PATCH] test/test_open3.rb: skip a fd redirection test on windows git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_open3.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_open3.rb b/test/test_open3.rb index 3eef5ae196..c91e69d9dd 100644 --- a/test/test_open3.rb +++ b/test/test_open3.rb @@ -317,6 +317,7 @@ class TestOpen3 < Test::Unit::TestCase end def test_integer_and_symbol_key + skip "passing FDs bigger than 2 is not supported on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM command = [RUBY, '-e', 'puts "test_integer_and_symbol_key"'] out, status = Open3.capture2(*command, :in => IO::NULL, 3 => IO::NULL) assert_equal("test_integer_and_symbol_key\n", out)