Remove test of removed reverse VM instruction

since 5512353d97250e85c13bf10b9b32e750478cf474
This commit is contained in:
Kazuhiro NISHIYAMA 2021-04-26 11:06:53 +09:00
parent fcc6f6de86
commit 2b487d36f0
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

View File

@ -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