diff options
author | Takashi Kokubun <[email protected]> | 2020-07-03 18:02:43 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-03 18:02:43 -0700 |
commit | 24fa37d87a24dc932c1d778bcaf91204f5c12a76 (patch) | |
tree | 19c661338ecc6b8d5974b80a1ef77a738931cade /test/ruby/test_jit.rb | |
parent | a69dd699ee630dd1086627dbca15a218a8538b6f (diff) |
Make Kernel#then, #yield_self, #frozen? builtin (#3283)
* Make Kernel#then, #yield_self, #frozen? builtin
* Fix test_jit
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r-- | test/ruby/test_jit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 339bfa2193..f929a8c851 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -372,7 +372,7 @@ class TestJIT < Test::Unit::TestCase end def test_compile_insn_send - assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: '1', success_count: 2, insns: %i[send]) + assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: '1', success_count: 3, insns: %i[send]) begin; print proc { yield_self { 1 } }.call end; |