1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove test of removed reverse VM instruction

since 5512353d97
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