summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-04-26 11:06:53 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-04-26 11:07:53 +0900
commit2b487d36f0e917146189f3c403a42f9f1293b8df (patch)
tree4aeee353af68526c127f15ab5754970fc3cc8c37 /test/ruby/test_jit.rb
parentfcc6f6de868b12cfaacb1313b874120455ce31ca (diff)
Remove test of removed reverse VM instruction
since 5512353d97250e85c13bf10b9b32e750478cf474
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index d7d4ee159c..55922b2d8c 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -318,10 +318,6 @@ class TestJIT < Test::Unit::TestCase
assert_compile_once('{}["true"] = true', result_inspect: 'true', insns: %i[swap topn])
end
- def test_compile_insn_reverse
- assert_compile_once('q, (w, e), r = 1, [2, 3], 4; [q, w, e, r]', result_inspect: '[1, 2, 3, 4]', insns: %i[reverse])
- end
-
def test_compile_insn_reput
skip "write test"
end