summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_open3.rb1
1 files changed, 1 insertions, 0 deletions
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)