mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
jit_support.rb: debug check_support stderr
rubyci freebsd11zfs doesn't pass this check. I want to know the stderr. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
783e2b579c
commit
f13b0fd8f3
1 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,11 @@ module JITSupport
|
|||
$stderr.puts "TestJIT: #jit_supported? check timed out"
|
||||
false
|
||||
else
|
||||
err.match?(JIT_SUCCESS_PREFIX)
|
||||
err.match?(JIT_SUCCESS_PREFIX).tap do |success|
|
||||
unless success
|
||||
$stderr.puts "TestJIT.check_support stderr:\n```\n#{err}\n```\n"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue