reduce iterations for slower machines

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-01-30 05:09:13 +00:00
Родитель 9e03ee87bf
Коммит 6cc463cac9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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}