summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-11-09 14:39:39 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-11-09 14:39:39 +0900
commit1290bdf1aeeefa5c7855b9654cc8aa9e1e740f45 (patch)
treea8e7ba716a3d11bb41a35f231b983c9cbf668600 /test/ruby
parent1d609707b429ebb0311454cfa633afa1aca8073c (diff)
test/ruby/test_fiber.rb: Extend timeout on Solaris
The test usually takes 200 sec. on Solaris, so the timeout of 300 sec. looks too short.
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_fiber.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb
index 67fef33b85..a0fd4a7491 100644
--- a/test/ruby/test_fiber.rb
+++ b/test/ruby/test_fiber.rb
@@ -50,7 +50,7 @@ class TestFiber < Test::Unit::TestCase
end
def test_many_fibers_with_threads
- assert_normal_exit <<-SRC, timeout: (/solaris/i =~ RUBY_PLATFORM ? 300 : 60)
+ assert_normal_exit <<-SRC, timeout: (/solaris/i =~ RUBY_PLATFORM ? 1000 : 60)
max = 1000
@cnt = 0
(1..100).map{|ti|