From 6cc463cac948d40896beedc4242a1212dcab67da Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 30 Jan 2017 05:09:13 +0000 Subject: reduce iterations for slower machines git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_io.rb') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index b16662cd42..b146e8e321 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3371,7 +3371,7 @@ __END__ assert_separately([], "#{<<-"begin;"}\n#{<<-"end;"}") bug13076 = '[ruby-core:78845] [Bug #13076]' begin; - 100.times do |i| + 10.times do |i| a = [] t = [] 10.times do @@ -3486,7 +3486,7 @@ __END__ end def test_closed_stream_in_rescue - 100.times do + 10.times do assert_nothing_raised(RuntimeError, /frozen IOError/) do IO.pipe do |r, w| th = Thread.start {r.close} -- cgit v1.2.3