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:
parent
a7e391d279
commit
3c59a221e1
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue