From 51f41f66181932aa0a42be2a430a04813c0d6abf Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 2 Sep 2014 13:45:20 +0000 Subject: * test/ruby/test_io.rb (test_new_with_block): Set autoclose to avoid EBADF. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'test/ruby/test_io.rb') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 95331ba02d..3bba329344 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -2282,11 +2282,15 @@ End end def test_new_with_block - assert_in_out_err([], "r, w = IO.pipe; IO.new(r.fileno) {}", [], /^.+$/) + assert_in_out_err([], "r, w = IO.pipe; r.autoclose=false; IO.new(r.fileno) {}.close", [], /^.+$/) n = "IO\u{5165 51fa 529b}" c = eval("class #{n} < IO; self; end") IO.pipe do |r, w| - assert_warning(/#{n}/) {c.new(r.fileno) {}} + assert_warning(/#{n}/) { + r.autoclose=false + io = c.new(r.fileno) {} + io.close + } end end -- cgit v1.2.3