aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-06 06:58:54 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-06 06:58:54 +0000
commit772183743d7d8a1b4ca3f95485e1a9b23fa05b43 (patch)
tree374b89ec860447f7d737eef386da65bac2800063 /test
parente7360038efd6b559d4e3327c94b6c31d351b3b60 (diff)
downloadruby-772183743d7d8a1b4ca3f95485e1a9b23fa05b43.tar.gz
revert r59020 because it may fail some tests sometimes on some environment (http://ci.rvm.jp/). This revert is to check the reason of failures.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 791e52b500..2cd60a4fca 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -2823,28 +2823,6 @@ __END__
end;
end
- def test_single_exception_on_close
- a = []
- t = []
- 10.times do
- r, w = IO.pipe
- a << [r, w]
- t << Thread.new do
- while r.gets
- end rescue IOError
- Thread.current.pending_interrupt?
- end
- end
- a.each do |r, w|
- w.write -"\n"
- w.close
- r.close
- end
- t.each do |th|
- assert_equal false, th.value, '[ruby-core:81581] [Bug #13632]'
- end
- end
-
def test_open_mode
feature4742 = "[ruby-core:36338]"
bug6055 = '[ruby-dev:45268]'