summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_zjit.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/ruby/test_zjit.rb b/test/ruby/test_zjit.rb
index 3ff1392ed7..2642467d73 100644
--- a/test/ruby/test_zjit.rb
+++ b/test/ruby/test_zjit.rb
@@ -251,8 +251,6 @@ class TestZJIT < Test::Unit::TestCase
end
def test_read_local_written_by_children_iseqs
- omit "This test fails right now because Send doesn't compile."
-
assert_compiles '[1, 2]', %q{
def test
l1 = nil
@@ -1369,15 +1367,13 @@ class TestZJIT < Test::Unit::TestCase
# This will do some EP hopping to find the local EP,
# so it's slightly different than doing it outside of a block.
- omit 'Test fails at the moment due to missing Send codegen'
-
assert_compiles '[nil, nil, "yield"]', %q{
def test
yield_self { yield_self { defined?(yield) } }
end
[test, test, test{}]
- }, call_threshold: 2, insns: [:defined]
+ }, call_threshold: 2
end
def test_invokeblock_without_block_after_jit_call