aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_gc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_gc.rb')
-rw-r--r--test/ruby/test_gc.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb
index 0d101f609b..2668582ed8 100644
--- a/test/ruby/test_gc.rb
+++ b/test/ruby/test_gc.rb
@@ -79,6 +79,26 @@ class TestGc < Test::Unit::TestCase
assert_equal(count[:FREE], stat[:heap_free_slot])
end
+ def test_gc_reason
+ 100_000.times{ "a" + "b" }
+ assert_equal({:gc_by => :newobj},
+ GC::Profiler.decode_flags(GC.stat[:last_collection_flags]))
+ end
+
+ def test_gc_reason_method
+ GC.start
+ assert_equal({:major_by=>:nofree, :gc_by=>:method, :immediate_sweep=>true},
+ GC::Profiler.decode_flags(GC.stat[:last_collection_flags]))
+ end
+
+ def test_gc_reason_stress
+ GC.stress = true
+ assert_equal({:major_by=>:stress, :gc_by=>:malloc, :immediate_sweep=>true},
+ GC::Profiler.decode_flags(GC.stat[:last_collection_flags]))
+ ensure
+ GC.stress = false
+ end
+
def test_singleton_method
assert_in_out_err(%w[--disable-gems], <<-EOS, [], [], "[ruby-dev:42832]")
GC.stress = true