From 8354b6d2cd0b83ad801d038a034e78e397ca32db Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 29 Oct 2017 05:46:23 +0000 Subject: io.c: honor buffered mode * io.c (io_writev): honor buffered mode to get rid of broken pipe error when stdout is redirected to a pipeline. [ruby-core:83578] [Feature #14042] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 0bedebfc16..a12cda6277 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1274,6 +1274,15 @@ class TestIO < Test::Unit::TestCase assert_in_out_err([], "STDOUT.write(:foo, :bar)", ["foobar"]) end + def test_write_buffered_with_multiple_arguments + out, err, (_, status) = EnvUtil.invoke_ruby(["-e", "sleep 0.1;puts 'foo'"], "", true, true) do |_, o, e, i| + [o.read, e.read, Process.waitpid2(i)] + end + assert_predicate(status, :success?) + assert_equal("foo\n", out) + assert_empty(err) + end + def test_write_non_writable with_pipe do |r, w| assert_raise(IOError) do -- cgit v1.2.3