From 526a853d6d6dbc126aa1e7ab113fc72a481c081c Mon Sep 17 00:00:00 2001 From: nagachika Date: Sun, 13 May 2012 14:50:49 +0000 Subject: * test/ruby/test_io.rb (test_flush_in_finalizer1): don't use IO.for_fd to close IO objects. it create IO object with already closed fd, and cause occasional Errno::EBADF in following tests. [ruby-core:45020] [Bug #6228] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index ebf9b760dd..be5a3331f0 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1891,7 +1891,7 @@ End } end ensure - fds.each {|fd| IO.for_fd(fd).close rescue next} + GC.start end def test_flush_in_finalizer2 -- cgit v1.2.3