From a2f9b00ad4871d3b0992212b89a2ecbe662e17b5 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 29 May 2014 12:42:14 +0000 Subject: test/io/nonblock/test_flush.rb: Close fds. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46228 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/io/nonblock/test_flush.rb | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'test/io/nonblock') diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb index b031c71bf8..8c93c814a3 100644 --- a/test/io/nonblock/test_flush.rb +++ b/test/io/nonblock/test_flush.rb @@ -7,9 +7,14 @@ end class TestIONonblock < Test::Unit::TestCase def test_flush - flush_test(*IO.pipe) or - (require 'socket'; flush_test(*Socket.pair(:INET, :STREAM))) or - skip "nonblocking IO did not work" + IO.pipe {|r, w| + return if flush_test(r, w) + } + require 'socket'; + Socket.pair(:INET, :STREAM) {|s1, s2| + return if flush_test(s1, s2) + } + skip "nonblocking IO did not work" end def flush_test(r, w) -- cgit v1.2.3