summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-21 07:08:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-21 07:08:34 +0000
commit22704a7631c8f6a16ea8041a2bb1a09a82235d5e (patch)
tree6ee0ba8dbb4abc5f5ad0a3507650412f7bb001ee /test/ruby
parentd993d350778e8aed65fd34c201b2b363c0f99bb8 (diff)
downloadruby-22704a7631c8f6a16ea8041a2bb1a09a82235d5e.tar.gz
ruby-22704a7631c8f6a16ea8041a2bb1a09a82235d5e.tar.xz
ruby-22704a7631c8f6a16ea8041a2bb1a09a82235d5e.zip
use fork to isolate rlimit effect.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_process.rb19
1 files changed, 12 insertions, 7 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 5c3035ea9..dc04c60f4 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -21,12 +21,17 @@ class TestProcess < Test::Unit::TestCase
def test_rlimit_nofile
return unless rlimit_exist?
- cur_nofile, max_nofile = Process.getrlimit(Process::RLIMIT_NOFILE)
- Process.setrlimit(Process::RLIMIT_NOFILE, 0, max_nofile)
- begin
- assert_raise(Errno::EMFILE) { IO.pipe }
- ensure
- Process.setrlimit(Process::RLIMIT_NOFILE, cur_nofile, max_nofile)
- end
+ pid = fork {
+ cur_nofile, max_nofile = Process.getrlimit(Process::RLIMIT_NOFILE)
+ Process.setrlimit(Process::RLIMIT_NOFILE, 0, max_nofile)
+ begin
+ IO.pipe
+ rescue Errno::EMFILE
+ exit 0
+ end
+ exit 1
+ }
+ Process.wait pid
+ assert_equal(0, $?.to_i)
end
end