1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix uplevel of test_jit

This commit is contained in:
Takashi Kokubun 2019-11-10 14:12:13 -08:00
parent fcd9bc28e3
commit a733893939
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -1020,7 +1020,7 @@ class TestJIT < Test::Unit::TestCase
# Make sure that the script has insns expected to be tested
used_insns = method_insns(script)
insns.each do |insn|
mark_tested_insn(insn, used_insns: used_insns)
mark_tested_insn(insn, used_insns: used_insns, uplevel: uplevel + 3)
end
assert_equal(
@ -1041,10 +1041,10 @@ class TestJIT < Test::Unit::TestCase
end
end
def mark_tested_insn(insn, used_insns:)
def mark_tested_insn(insn, used_insns:, uplevel: 1)
unless used_insns.include?(insn)
$stderr.puts
warn "'#{insn}' insn is not included in the script. Actual insns are: #{used_insns.join(' ')}\n", uplevel: uplevel+2
warn "'#{insn}' insn is not included in the script. Actual insns are: #{used_insns.join(' ')}\n", uplevel: uplevel
end
TestJIT.untested_insns.delete(insn)
end