From 837471aac32c1728dd04135ec2c10f6e1c376e90 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Oct 2015 07:47:16 +0000 Subject: fix conditions to setrlimit * test/ruby/test_io.rb (test_dup_many): limit FD only if possible. * test/ruby/test_process.rb (assert_fail_too_long_path): fix the condition for platform specific feature git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby/test_process.rb') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 2910ff8bd4..6512ef2dd7 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1597,7 +1597,7 @@ class TestProcess < Test::Unit::TestCase exs = [Errno::ENOENT] exs << Errno::E2BIG if defined?(Errno::E2BIG) opts = {[STDOUT, STDERR]=>File::NULL} - opts[:rlimit_nproc] = 128 if /mswin|mingw/ =~ RUBY_PLATFORM + opts[:rlimit_nproc] = 128 if defined?(Process::RLIMIT_NPROC) EnvUtil.suppress_warning do assert_raise(*exs, mesg) do begin -- cgit v1.2.3