summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_gc_compact.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ruby/test_gc_compact.rb b/test/ruby/test_gc_compact.rb
index 7d8bde04f8..46683d0ed5 100644
--- a/test/ruby/test_gc_compact.rb
+++ b/test/ruby/test_gc_compact.rb
@@ -69,10 +69,11 @@ class TestGCCompact < Test::Unit::TestCase
}
count = GC.stat :compact_count
GC.auto_compact = true
- loop do
+ n = 1_000_000
+ n.times do
break if count < GC.stat(:compact_count)
list2 << Object.new
- end
+ end and skip "implicit compaction didn't happen within #{n} objects"
compact_stats = GC.latest_compact_info
refute_predicate compact_stats[:considered], :empty?
refute_predicate compact_stats[:moved], :empty?