From fe9fc6df018402de830f42b63ea25d927c8726a8 Mon Sep 17 00:00:00 2001 From: nari Date: Wed, 21 Nov 2012 13:15:10 +0000 Subject: * gc.c (gc_profile_clear): realloc profile records if its size is higher than the threshold, GC_PROFILE_RECORD_DEFAULT_SIZE * 2. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_gc.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test') diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 39716eb7e2..9fb9550147 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -118,4 +118,20 @@ class TestGc < Test::Unit::TestCase ensure GC::Profiler.disable end + + def test_profiler_clear + GC::Profiler.enable + + GC.start + assert_equal(1, GC::Profiler.raw_data.size) + GC.clear + assert_equal(0, GC::Profiler.raw_data.size) + + 200.times{ GC.start } + assert_equal(200, GC::Profiler.raw_data.size) + GC.clear + assert_equal(0, GC::Profiler.raw_data.size) + ensure + GC::Profiler.disable + end end -- cgit v1.2.3