summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-17 01:14:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-17 01:14:37 +0000
commit05be3e89d48e5eaf7f902aeb113ffc55ab6d49fd (patch)
tree7bfafc13198353331bcd46978d7527f1d1549923 /test/ruby/test_process.rb
parentb53fadfd5f200dbd6fe9f4b2a91ebb68618e59bb (diff)
passing non-stdio fds is not supported on Windows
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index bb56834dc0..23e4f01c91 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1016,7 +1016,7 @@ class TestProcess < Test::Unit::TestCase
assert_equal true, system(*%W(#{RUBY} --disable=gems -e #{src}))
assert_equal "hi\n", r.gets
end
- end
+ end unless windows? # passing non-stdio fds is not supported on Windows
def test_execopts_redirect_self
begin