aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 02:52:25 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 02:52:25 +0000
commitd8cca44e3febd8a378d6bd51d631ccf35506b5ad (patch)
tree913a81d008f3b0bb06d2e71ae4a52ef40cb27dd0 /test
parentdde58e59eb34fa336f78b9e7296785274acf59a9 (diff)
downloadruby-d8cca44e3febd8a378d6bd51d631ccf35506b5ad.tar.gz
suppress warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index dd4c2c2a51..8318e4e619 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1364,7 +1364,7 @@ class TestProcess < Test::Unit::TestCase
return unless Signal.list.include?("QUIT")
with_tmpchdir do
- cur, max = Process.getrlimit(:CORE)
+ _, max = Process.getrlimit(:CORE)
s = assert_in_out_err([], "Process.kill(:SIGQUIT, $$);sleep 30", //, //, :rlimit_core=>[0,max])
assert_equal([false, true, false, nil],
[s.exited?, s.signaled?, s.stopped?, s.success?],