From 19341b86be0e366c4656a2777a6abd4d754070a4 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 27 May 2015 10:56:33 +0000 Subject: 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 --- test/bigdecimal/test_bigdecimal.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/bigdecimal') 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? -- cgit v1.2.3