summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/fileutils/test_fileutils.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb
index 028f63b3dc..1a6f1c5c55 100644
--- a/test/fileutils/test_fileutils.rb
+++ b/test/fileutils/test_fileutils.rb
@@ -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