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

* test/fileutils/test_fileutils.rb: add debug output to investigate the error that occur at random on Windows CI.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2015-12-06 07:22:17 +00:00
parent 1ad0d8ecad
commit 9fc965eeba

View file

@ -109,7 +109,12 @@ class TestFileUtils < Test::Unit::TestCase
false
end
ensure
Dir.rmdir tmproot
begin
Dir.rmdir tmproot
rescue
STDERR.puts $!.inspect
STDERR.puts Dir.entries(tmproot).inspect
end
end
end
include m