зеркало из https://github.com/github/ruby.git
* 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:
Родитель
80025e956b
Коммит
66a36e9b13
|
@ -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>
|
||||
|
||||
* .gitignore: ignore version.i.
|
||||
|
|
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче