1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

do not close FSs explicitly.

* test/ruby/test_dir.rb: r67159 closes all files explicitly
  but this change breaks attempt of this test introduced at
  r56467. Try another solution which removes all references
  from an Array with `#clear`.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67161 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2019-03-03 06:18:43 +00:00
parent 7ebea69529
commit 2e9d4b9f0b

View file

@ -458,10 +458,10 @@ class TestDir < Test::Unit::TestCase
Process.setrlimit(Process::RLIMIT_NOFILE, 50)
begin
fs = []
tap {tap {tap {(0..100).map {fs << open(IO::NULL)}}}}
tap {tap {tap {(0..100).each {fs << open(IO::NULL)}}}}
rescue Errno::EMFILE
ensure
fs.each{|f| f.close}
fs.clear
end
list = Dir.glob("*").sort
assert_not_empty(list)