summaryrefslogtreecommitdiff
path: root/test/ruby/test_io.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-30 05:09:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-30 05:09:13 +0000
commit6cc463cac948d40896beedc4242a1212dcab67da (patch)
treeafdb49ff93eeea5c51a35df915677aafdb9d5e2d /test/ruby/test_io.rb
parent9e03ee87bfa03ffdc889a253aab6fb60172619aa (diff)
reduce iterations for slower machines
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_io.rb')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 2 insertions, 2 deletions
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}