* test/bigdecimal/test_bigdecimal.rb (assert_no_memory_leak): fix
  GC scope and adjust limits.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-05-27 10:56:33 +00:00
Родитель bdf07741f3
Коммит 19341b86be
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1554,11 +1554,11 @@ class TestBigDecimal < Test::Unit::TestCase
end
def assert_no_memory_leak(code, *rest, **opt)
code = "5.times {1_000.times {begin #{code}; rescue NoMemoryError; end; GC.start}} if b"
code = "8.times {20_000.times {begin #{code}; rescue NoMemoryError; end}; GC.start}"
super(["-rbigdecimal"],
"b = BigDecimal('10'); b.nil?; " \
"GC.add_stress_to_class(BigDecimal); "\
"#{code}", code, *rest, rss: true, **opt)
"#{code}", code, *rest, rss: true, limit: 1.1, **opt)
end
if EnvUtil.gc_stress_to_class?