summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-23 06:22:25 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-23 06:22:25 +0000
commit7ca648e9292925ee3071dba500f5928da209ef19 (patch)
tree72f55787f5246931b9a27b949dbf18973db18949 /test
parentb2f9deee3ee0ee602fb5f062a4d0774b1ddc5bfc (diff)
60 sec is not enough at all
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
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