From d3ae13571f33b3fc898c354f4f04fd0c4fe2e335 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Fri, 29 Jun 2018 04:56:07 +0000 Subject: improve C0 coverage of insns.def git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/test_insns.rb | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) (limited to 'bootstraptest/test_insns.rb') diff --git a/bootstraptest/test_insns.rb b/bootstraptest/test_insns.rb index 4dd888897a..6de5c60999 100644 --- a/bootstraptest/test_insns.rb +++ b/bootstraptest/test_insns.rb @@ -18,7 +18,6 @@ fsl = { frozen_string_literal: true } # used later tests = [ # insn , expression to generate such insn [ 'nop', %q{ raise rescue true }, ], - [ 'trace', %q{ true }, ], [ 'setlocal *, 0', %q{ x = true }, ], [ 'setlocal *, 1', %q{ x = nil; -> { x = true }.call }, ], @@ -27,6 +26,27 @@ tests = [ [ 'getlocal *, 1', %q{ x = true; -> { x }.call }, ], [ 'getlocal', %q{ x = true; -> { -> { x }.() }.() }, ], + [ 'setblockparam', <<~'},', ], # { + def m&b + b = # here + proc { true } + end + m { false }.call + }, + [ 'getblockparam', <<~'},', ], # { + def m&b + b # here + end + m { true }.call + }, + [ 'getblockparamproxy', <<~'},', ], # { + def m&b + b # here + .call + end + m { true } + }, + [ 'setspecial', %q{ true if true..true }, ], [ 'getspecial', %q{ $&.nil? }, ], [ 'getspecial', %q{ $`.nil? }, ], @@ -67,9 +87,10 @@ tests = [ [ 'putiseq', %q{ -> { true }.() }, ], [ 'putstring', %q{ "true" }, ], [ 'tostring / concatstrings', %q{ "#{true}" }, ], - [ 'freezestring', %q{ "#{true}"}, fsl, ], - [ 'freezestring', %q{ "#{true}"}, '-d', fsl, ], + [ 'freezestring', %q{ "#{true}" }, fsl, ], + [ 'freezestring', %q{ "#{true}" }, '-d', fsl, ], [ 'toregexp', %q{ /#{true}/ =~ "true" && $~ }, ], + [ 'intern', %q{ :"#{true}" }, ], [ 'newarray', %q{ ["true"][0] }, ], [ 'duparray', %q{ [ true ][0] }, ], @@ -97,7 +118,6 @@ tests = [ [ 'pop', %q{ def x; true; end; x }, ], [ 'dup', %q{ x = y = true; x }, ], [ 'dupn', %q{ Object::X ||= true }, ], - [ 'dupn', %q{ Object::X ||= true }, ], [ 'reverse', %q{ q, (w, e), r = 1, [2, 3], 4; e == 3 }, ], [ 'swap', <<~'},', ], # { x = [[false, true]] @@ -113,6 +133,7 @@ tests = [ [ 'defined', %q{ !defined?(x) }, ], [ 'checkkeyword', %q{ def x x:rand;x end; x x: true }, ], + [ 'checktype', %q{ x = true; "#{x}" }, ], [ 'checkmatch', <<~'},', ], # { x = y = true case x @@ -384,6 +405,15 @@ tests = [ class String; def =~ other; true; end; end 'true' =~ /true/ }, + + [ 'opt_call_c_function', 'Struct.new(:x).new.x = true', ], ] +# normal path tests.compact.each {|(insn, expr, *a)| assert_equal 'true', expr, insn, *a } + +# with trace +tests.compact.each {|(insn, expr, *a)| + progn = "set_trace_func(proc{})\n" + expr + assert_equal 'true', progn, insn, *a +} -- cgit v1.2.3