From 38c555a3150b6c22be650dc5c89ed5927c640e8c Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Sun, 14 Nov 2021 02:41:30 +0900 Subject: [PATCH] show encoding for each path --- test/io/console/test_io_console.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index d79ad1a084..33b98990a1 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -11,7 +11,7 @@ class TestIO_Console < Test::Unit::TestCase PATHS = $LOADED_FEATURES.grep(%r"/io/console(?:\.#{RbConfig::CONFIG['DLEXT']}|\.rb|/\w+\.rb)\z") {$`} rescue Encoding::CompatibilityError $stderr.puts "test_io_console.rb debug" - $stderr.puts $LOADED_FEATURES.inspect + $LOADED_FEATURES.each{|path| $stderr.puts [path, path.encoding].inspect} raise end PATHS.uniq!