* 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
This commit is contained in:
ngoto 2015-07-15 16:39:25 +00:00
Родитель 80025e956b
Коммит 66a36e9b13
2 изменённых файлов: 20 добавлений и 0 удалений

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

@ -1,3 +1,8 @@
Thu Jul 16 01:00:46 2015 Naohisa Goto <ngotogenome@gmail.com>
* test/ruby/test_process.rb (test_exec_close_reserved_fd): test for
[Bug #11353]
Thu Jul 16 00:35:42 2015 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> Thu Jul 16 00:35:42 2015 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* .gitignore: ignore version.i. * .gitignore: ignore version.i.

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

@ -2077,4 +2077,19 @@ EOS
end end
INPUT INPUT
end if defined?(fork) 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 end