From 42a15516c05609dd2fc5a8c5863e453444c24761 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 26 Nov 2014 11:00:19 +0000 Subject: * test/ruby/test_gc.rb (test_latest_gc_info): do test separately to avoid mysterious behavior. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_gc.rb | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4c7fef81b3..c3b5db226a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 26 19:57:54 2014 Koichi Sasada + + * test/ruby/test_gc.rb (test_latest_gc_info): do test separately + to avoid mysterious behavior. + Wed Nov 26 19:54:31 2014 Nobuyoshi Nakada * win32/win32.c (constat_reset): do nothing on non-standard diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 9baf429279..ca57b69518 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -123,10 +123,12 @@ class TestGc < Test::Unit::TestCase end def test_latest_gc_info + assert_separately %w[--disable-gem], __FILE__, __LINE__, <<-'eom' GC.start count = GC.stat(:heap_free_slots) + GC.stat(:heap_allocatable_pages) * GC::INTERNAL_CONSTANTS[:HEAP_OBJ_LIMIT] count.times{ "a" + "b" } assert_equal :newobj, GC.latest_gc_info[:gc_by] + eom GC.start assert_equal :force, GC.latest_gc_info[:major_by] if use_rgengc? -- cgit v1.2.3