From 1fe90db5380117580ae41be4f3d01686aaa73697 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 25 Oct 2014 13:34:21 +0000 Subject: * io.c (io_binwrite_string): Test writev() failure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 557ad0897b..18157fabf1 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1370,6 +1370,17 @@ class TestIO < Test::Unit::TestCase end end + def test_close_read_pipe_nosync + assert_separately([], <<-"end;") + r, w = IO.pipe + r.close + w.sync = false + assert_raise(Errno::EPIPE) { + loop { w.write "a" } + } + end; + end + def test_close_read_non_readable with_pipe do |r, w| assert_raise(IOError) do -- cgit v1.2.3