ruby-changes:50577
From: k0kubun <ko1@a...>
Date: Sun, 11 Mar 2018 18:47:34 +0900 (JST)
Subject: [ruby-changes:50577] k0kubun:r62722 (trunk): test_jit.rb: show debugging output on stderr
k0kubun 2018-03-11 18:47:28 +0900 (Sun, 11 Mar 2018) New Revision: 62722 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62722 Log: test_jit.rb: show debugging output on stderr instead of stdout. We would not capture the output as test results. Modified files: trunk/test/ruby/test_jit.rb Index: test/ruby/test_jit.rb =================================================================== --- test/ruby/test_jit.rb (revision 62721) +++ test/ruby/test_jit.rb (revision 62722) @@ -548,8 +548,8 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L548 # Debugging on CI if err.include?("gcc: error trying to exec 'cc1': execvp: No such file or directory") - puts "test/ruby/test_jit.rb: ENV content:" - pp ENV + $stderr.puts "test/ruby/test_jit.rb: ENV content:" + PP.pp(ENV, $stderr) end assert_equal( -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/