From 1286fae3401f3461fa761a4ec3a9e2727b31e8e3 Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 27 Oct 2015 20:51:29 +0000 Subject: suppress warnings: assigned but unused variable git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_gc.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 3e3e25d437..cf869924c1 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -12,10 +12,10 @@ class TestGc < Test::Unit::TestCase GC.stress = false assert_nothing_raised do + tmp = nil 1.upto(10000) { tmp = [0,1,2,3,4,5,6,7,8,9] } - tmp = nil end l=nil 100000.times { @@ -348,7 +348,7 @@ class TestGc < Test::Unit::TestCase end; opts = {signal: :SEGV} begin - cur, max = Process.getrlimit(:CORE) + _, max = Process.getrlimit(:CORE) opts[:rlimit_core] = [0,max] rescue NotImplementedError end -- cgit v1.2.3