summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index b25a9b15a2..3abbcba170 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -863,13 +863,14 @@ class TestJIT < Test::Unit::TestCase
success_count = err.scan(/^#{JIT_SUCCESS_PREFIX}:/).size
assert_equal(3, success_count)
- # assert no remove error
lines = err.lines
- assert_match(/^Successful MJIT finish$/, lines[3])
- assert_match(/^Successful MJIT finish$/, lines[4])
+ debug_info = "stdout:\n```\n#{out}\n```\n\nstderr:\n```\n#{err}```\n"
+
+ # assert no remove error
+ assert_match(/^Successful MJIT finish$/, lines[3], debug_info)
+ assert_match(/^Successful MJIT finish$/, lines[4], debug_info)
# ensure objects are deleted
- debug_info = "stdout:\n```\n#{out}\n```\n\nstderr:\n```\n#{err}```\n"
assert_send([Dir, :empty?, dir], debug_info)
end
end if defined?(fork)