From 7944710ed46f4ca13fd5e3c023fc37fcb1928fad Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Fri, 7 Jun 2024 22:39:21 +0900 Subject: [PATCH] TestGc#test_thrashing_for_young_objects: extend the timeout limit --- test/ruby/test_gc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 39b001c3d0..491746fe83 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -648,7 +648,7 @@ class TestGc < Test::Unit::TestCase def test_thrashing_for_young_objects # This test prevents bugs like [Bug #18929] - assert_separately([], __FILE__, __LINE__, <<-'RUBY') + assert_separately([], __FILE__, __LINE__, <<-'RUBY', timeout: 60) # Grow the heap @ary = 100_000.times.map { Object.new }