aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-19 04:34:30 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-19 04:34:30 +0000
commiteda786cd253dcdc4613b03f6b88f0abf725826c0 (patch)
tree416bd4e90d38edee35f380c995587fc495a5f5f9
parent4f4ef90d2b036ccca5b7ac27112bfa4349e76e19 (diff)
downloadruby-eda786cd253dcdc4613b03f6b88f0abf725826c0.tar.gz
* test/ruby/test_array.rb (TestArray#test_push_over_ary_max): it seems to take
long time on mswinci. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 ea6bdf097b..54bdd4cee3 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -2684,7 +2684,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;")
+ assert_separately(['-', ARY_MAX.to_s, Bug11235], <<-"end;", timeout: 20)
a = Array.new(ARGV[0].to_i)
assert_raise(IndexError, ARGV[1]) {0x1000.times {a.push(1)}}
end;