1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

suppress warnings: assigned but unused variable

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-10-27 20:51:29 +00:00
parent a7e391d279
commit 3c59a221e1

View file

@ -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