From 7ca648e9292925ee3071dba500f5928da209ef19 Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 23 Jul 2018 06:22:25 +0000 Subject: [PATCH] 60 sec is not enough at all git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 478ac5ae4a..f28b6f7dd2 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3808,7 +3808,7 @@ __END__ wset = [w] Thread.new { IO.select(rset, wset, nil, 0) }.join end; - 200_000.times do + 20_000.times do th = Thread.new { IO.select(rset, wset) } Thread.pass until th.stop? th.kill