diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-01-26 17:19:36 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-01-26 17:19:36 +0000 |
commit | 2743c491a7d7b4e015b9e0a2b114856371bdd636 (patch) | |
tree | 44c60e7b7ed03a6567bbfb8e99c4c3f790faaae3 /test/ruby/test_array.rb | |
parent | d0128a699a0546f6052b897218c7bc84ccd67b8e (diff) |
increase timeout for Solaris 10 SPARC
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r-- | test/ruby/test_array.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 436906ae32..feeccd4e0a 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1821,7 +1821,7 @@ class TestArray < Test::Unit::TestCase assert_equal(b, @cls[0, 1, 2, 3, 4][1, 4].permutation.to_a, bug3708) bug9932 = '[ruby-core:63103] [Bug #9932]' - assert_separately([], <<-"end;") # do + assert_separately([], <<-"end;", timeout: 30) # do assert_nothing_raised(SystemStackError, "#{bug9932}") do assert_equal(:ok, Array.new(100_000, nil).permutation {break :ok}) end |