test/io/console/test_io_console.rb: dump debug output to stderr

make test-all in parallel mode seems to hide stdout
This commit is contained in:
Yusuke Endoh 2021-11-14 02:35:03 +09:00
parent 415671a282
commit 4d8d8c9d49

View File

@ -10,7 +10,8 @@ class TestIO_Console < Test::Unit::TestCase
begin
PATHS = $LOADED_FEATURES.grep(%r"/io/console(?:\.#{RbConfig::CONFIG['DLEXT']}|\.rb|/\w+\.rb)\z") {$`}
rescue Encoding::CompatibilityError
p $LOADED_FEATURES
$stderr.puts "test_io_console.rb debug"
$stderr.puts $LOADED_FEATURES.inspect
raise
end
PATHS.uniq!