summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-27 10:56:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-27 10:56:33 +0000
commit19341b86be0e366c4656a2777a6abd4d754070a4 (patch)
treeeea37ce66d8cf427cfe703ddf407b6bf744dbfb2
parentbdf07741f3c9e2aa522026ca116d55f257013c41 (diff)
test_bigdecimal.rb: adjust
* 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
-rw-r--r--test/bigdecimal/test_bigdecimal.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bigdecimal/test_bigdecimal.rb b/test/bigdecimal/test_bigdecimal.rb
index ad48d70799..edbaa163b4 100644
--- a/test/bigdecimal/test_bigdecimal.rb
+++ b/test/bigdecimal/test_bigdecimal.rb
@@ -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?