aboutsummaryrefslogtreecommitdiffstats
path: root/test/fileutils
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-06 07:22:17 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-06 07:22:17 +0000
commitc2662b4827fe83c7de17ee211263bdeddff8773f (patch)
treea134446230d88d61100d24b4fe7d5ff322ea1ed0 /test/fileutils
parent677cdf71067fc774d5087952f1b59416e5e56acc (diff)
downloadruby-c2662b4827fe83c7de17ee211263bdeddff8773f.tar.gz
* 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
Diffstat (limited to 'test/fileutils')
-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