mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_rubyvm_mjit.rb: dump output on test_pause
failure. It's failing on mswinci but it's hard to know the cause without out/err. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d9260c5a50
commit
f219f785dc
1 changed files with 4 additions and 1 deletions
|
@ -21,7 +21,10 @@ class TestRubyVMMJIT < Test::Unit::TestCase
|
||||||
print RubyVM::MJIT.pause # no JIT here
|
print RubyVM::MJIT.pause # no JIT here
|
||||||
EOS
|
EOS
|
||||||
assert_equal('truefalsefalse', out)
|
assert_equal('truefalsefalse', out)
|
||||||
assert_equal(5, err.scan(/#{JITSupport::JIT_SUCCESS_PREFIX}/).size)
|
assert_equal(
|
||||||
|
5, err.scan(/#{JITSupport::JIT_SUCCESS_PREFIX}/).size,
|
||||||
|
"unexpected stdout:\n```\n#{out}```\n\nstderr:\n```\n#{err}```",
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_pause_wait_false
|
def test_pause_wait_false
|
||||||
|
|
Loading…
Reference in a new issue