diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-31 07:18:43 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-31 07:18:43 +0000 |
| commit | 4b797ebf0d8d1ae5cfe96462b38ac3419d575e48 (patch) | |
| tree | 926122c56ffbd5b759075bb49d880b278abb4858 /test/ruby | |
| parent | 7eb1c3c6f03f79e73e45029e22afc93153bc3726 (diff) | |
| download | ruby-4b797ebf0d8d1ae5cfe96462b38ac3419d575e48.tar.gz ruby-4b797ebf0d8d1ae5cfe96462b38ac3419d575e48.tar.xz ruby-4b797ebf0d8d1ae5cfe96462b38ac3419d575e48.zip | |
* test/ruby/test_process.rb (TestProcess#test_rlimit_nofile):
setrlimit may fail with EINVAL.
reported by MIYAMUKO Katsuyuki. [ruby-dev:29174]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_process.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index dc04c60f4..93eb871ed 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -23,7 +23,11 @@ class TestProcess < Test::Unit::TestCase return unless rlimit_exist? pid = fork { cur_nofile, max_nofile = Process.getrlimit(Process::RLIMIT_NOFILE) - Process.setrlimit(Process::RLIMIT_NOFILE, 0, max_nofile) + begin + Process.setrlimit(Process::RLIMIT_NOFILE, 0, max_nofile) + rescue Errno::EINVAL + exit 0 + end begin IO.pipe rescue Errno::EMFILE |
