aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_rubyvm_mjit.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/ruby/test_rubyvm_mjit.rb b/test/ruby/test_rubyvm_mjit.rb
index de6619188a..f4612ed902 100644
--- a/test/ruby/test_rubyvm_mjit.rb
+++ b/test/ruby/test_rubyvm_mjit.rb
@@ -21,7 +21,10 @@ class TestRubyVMMJIT < Test::Unit::TestCase
print RubyVM::MJIT.pause # no JIT here
EOS
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
def test_pause_wait_false