From 2b487d36f0e917146189f3c403a42f9f1293b8df Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Mon, 26 Apr 2021 11:06:53 +0900 Subject: [PATCH] Remove test of removed reverse VM instruction since 5512353d97250e85c13bf10b9b32e750478cf474 --- test/ruby/test_jit.rb | 4 ---- 1 file changed, 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