summaryrefslogtreecommitdiff
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-17 16:10:56 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-17 16:10:56 +0000
commitf5b1f76025cbdb517467be089c61c3c7ce601243 (patch)
treea2e16036f9c2aaae04b6d4778b4a6b159221549f /test/ruby/test_array.rb
parent451e0a6ee1362b4cfc504087f0d3232bbaeb76ca (diff)
Increase timeout
http://rubyci.org/logs/13.78.52.201/vc12-x64/ruby-trunk/log/20161217T103523Z.log.html.gz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_array.rb')
-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 5ecaaa3aa6..6ac2ff1c80 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -2719,7 +2719,7 @@ class TestArray < Test::Unit::TestCase
Bug11235 = '[ruby-dev:49043] [Bug #11235]'
def test_push_over_ary_max
- assert_separately(['-', ARY_MAX.to_s, Bug11235], <<-"end;", timeout: 20)
+ assert_separately(['-', ARY_MAX.to_s, Bug11235], <<-"end;", timeout: 30)
a = Array.new(ARGV[0].to_i)
assert_raise(IndexError, ARGV[1]) {0x1000.times {a.push(1)}}
end;