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:
parent
1ad0d8ecad
commit
9fc965eeba
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue