summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-11-10 14:12:13 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2019-11-10 14:12:13 -0800
commita73389393906939ed9208562e6ec5eb3d21775e3 (patch)
tree211386c511631be8321fb26f975123651f516820 /test/ruby/test_jit.rb
parentfcd9bc28e3d7d301bcdf6eea8ffa25c0c3ec184f (diff)
Fix uplevel of test_jit
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb6
1 files changed, 3 insertions, 3 deletions
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