From 608310d6ffc6284ada059c074d9be390c72df556 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 13 Dec 2018 08:53:15 +0000 Subject: use :chdir option to avoid fd 3 to work with Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66380 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_open3.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/test_open3.rb') diff --git a/test/test_open3.rb b/test/test_open3.rb index c91e69d9dd..6842ac8d8c 100644 --- a/test/test_open3.rb +++ b/test/test_open3.rb @@ -317,9 +317,8 @@ 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) + out, status = Open3.capture2(*command, :chdir => '.', 2 => IO::NULL) assert_equal("test_integer_and_symbol_key\n", out) end end -- cgit v1.2.3