From 66a36e9b13e3e7eee3ecc4f844be72416d1863cf Mon Sep 17 00:00:00 2001 From: ngoto Date: Wed, 15 Jul 2015 16:39:25 +0000 Subject: * test/ruby/test_process.rb (test_exec_close_reserved_fd): test for [Bug #11353] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51259 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'test') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 75374624ef..00bbf9ee0b 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -2077,4 +2077,19 @@ EOS end INPUT end if defined?(fork) + + def test_exec_close_reserved_fd + cmd = ".#{File::ALT_SEPARATOR || File::SEPARATOR}bug11353" + with_tmpchdir { + (3..6).each do |i| + ret = run_in_child(<<-INPUT) + begin + Process.exec('#{cmd}', 'dummy', #{i} => :close) + rescue SystemCallError + end + INPUT + assert_equal(0, ret) + end + } + end end -- cgit v1.2.3