summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-05 20:55:36 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-05 20:55:36 +0000
commit77eea6f9405afc6c732f087164dd6d78de0f81a3 (patch)
tree7f7331d8ab7da542deea0a06c20fb4ec4fa16fc9 /test
parent1f3971e054f8430b00a3b5a856f5219671d83066 (diff)
test/ruby/test_array.rb: longer timeout for memory leak test
This was causing CI failures on ko1's test box git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 51caf8fa37..5d451cdde9 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -1447,7 +1447,7 @@ class TestArray < Test::Unit::TestCase
def test_short_heap_array_sort_bang_memory_leak
bug11332 = '[ruby-dev:49166] [Bug #11332]'
- assert_no_memory_leak([], <<-PREP, <<-TEST, bug11332, limit: 1.20)
+ assert_no_memory_leak([], <<-PREP, <<-TEST, bug11332, limit: 1.20, timeout: 60)
def t; ary = [*1..5]; ary.pop(2); ary.sort!; end
1.times {t}
PREP