From 927bd684c12ceb28178a7435f628d600f4df82a4 Mon Sep 17 00:00:00 2001 From: normal Date: Fri, 19 Dec 2014 20:20:33 +0000 Subject: [PATCH] test/test_weakref.rb: increase timeout [Bug #10618] * test/test_weakref.rb (test_repeated_object_leak): increase timeout [Bug #10618] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_weakref.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_weakref.rb b/test/test_weakref.rb index 36b5d5bc51..d21b431abb 100644 --- a/test/test_weakref.rb +++ b/test/test_weakref.rb @@ -63,7 +63,7 @@ class TestWeakRef < Test::Unit::TestCase def test_repeated_object_leak bug10537 = '[ruby-core:66428]' - assert_no_memory_leak(%w(-rweakref), '', <<-'end;', bug10537) + assert_no_memory_leak(%w(-rweakref), '', <<-'end;', bug10537, timeout: 60) a = Object.new 150_000.times { WeakRef.new(a) } end;