limit the number of FDs in a process for stress test

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-10-22 15:00:13 +00:00
Родитель 29a1905c7d
Коммит b471c9d35a
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -1135,6 +1135,8 @@ class TestIO < Test::Unit::TestCase
def test_dup_many
ruby('-e', <<-'End') {|f|
lim = Process.getrlimit(Process::RLIMIT_NOFILE)[0]
Process.setrlimit(Process::RLIMIT_NOFILE, [lim, 1024].min)
ok = 0
a = []
begin