From a73389393906939ed9208562e6ec5eb3d21775e3 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sun, 10 Nov 2019 14:12:13 -0800 Subject: Fix uplevel of test_jit --- test/ruby/test_jit.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby/test_jit.rb') diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 75d4b28d5d..803a8e4996 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -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 -- cgit v1.2.3