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

show encoding for each path

This commit is contained in:
Koichi Sasada 2021-11-14 02:41:30 +09:00
parent 43358c08f6
commit 38c555a315

View file

@ -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!