summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2019-07-03 03:37:25 +0900
committerKoichi Sasada <ko1@atdot.net>2019-07-03 03:37:25 +0900
commit712a66b0741605f5b2db670a292b9bb352f8a716 (patch)
treea15f199e0bcc85b5f570011737d3305381fbd43d /test/ruby/test_jit.rb
parentc07165be1d2bccc9e1c67a90d16259a9c929b56d (diff)
Revert "Avoid corrupting VM stack on inlined setlocal"
This reverts commit ea30dd702512ff9df34fe8c71c825f8f901bf5b1. because it fails when VM_CHECK_MODE=1.
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index cd7ac23697..66360731eb 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -11,7 +11,6 @@ class TestJIT < Test::Unit::TestCase
IGNORABLE_PATTERNS = [
/\AJIT recompile: .+\n\z/,
- /\AJIT inline: .+\n\z/,
/\ASuccessful MJIT finish\n\z/,
]
@@ -842,19 +841,6 @@ class TestJIT < Test::Unit::TestCase
end;
end
- def test_block_handler_with_frame_omitted_inlining
- assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: "70.0\n70.0\n70.0\n", success_count: 1, min_calls: 2)
- begin;
- def multiply(a, b)
- a *= b
- end
-
- 3.times do
- p multiply(7.0, 10.0)
- end
- end;
- end
-
def test_program_counter_with_regexpmatch
assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: "aa", success_count: 1)
begin;