summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-11-14 02:35:03 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-11-14 02:35:03 +0900
commit4d8d8c9d4908a28e22c3182e27eac0e397e23833 (patch)
tree53280232318a8d8dbffc2b9c1086859b4effe760 /test
parent415671a28273e5bfbe9aa00a0e386f025720ac23 (diff)
test/io/console/test_io_console.rb: dump debug output to stderr
make test-all in parallel mode seems to hide stdout
Diffstat (limited to 'test')
-rw-r--r--test/io/console/test_io_console.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 00727a14b4..d79ad1a084 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -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!