summaryrefslogtreecommitdiff
path: root/test/test_weakref.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-23 18:14:15 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-23 18:14:15 +0000
commit57fd3577619eceb62d8a57cc7cc43025990a6c0c (patch)
tree095161ea1a2d15870f97d1acfba11a6f8f67d426 /test/test_weakref.rb
parent7f5bc1bae5165dc40bff7ccc7999f5c535de910f (diff)
merge revision(s) 48900,48902: [Backport #10618]
test/test_weakref.rb: increase timeout [Bug #10618] * test/test_weakref.rb (test_repeated_object_leak): 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/branches/ruby_2_2@48949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_weakref.rb')
-rw-r--r--test/test_weakref.rb2
1 files changed, 1 insertions, 1 deletions
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;