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
This commit is contained in:
akr 2018-12-13 08:53:15 +00:00
Родитель 690fd7633c
Коммит 608310d6ff
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -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