[ruby/irb] Reduce test pend truffleruby

(https://github.com/ruby/irb/pull/619)

https://github.com/ruby/irb/commit/b7b071774f
This commit is contained in:
tomoya ishida 2023-06-29 02:33:15 +09:00 committed by git
parent 8f9d58a962
commit 78ecb93f9d
2 changed files with 0 additions and 5 deletions

View File

@ -473,7 +473,6 @@ module TestIRB
end
def test_show_source_end_finder
pend if RUBY_ENGINE == 'truffleruby'
eval(code = <<-EOS, binding, __FILE__, __LINE__ + 1)
def show_source_test_method
unless true
@ -490,7 +489,6 @@ module TestIRB
end
def test_show_source_private_instance
pend if RUBY_ENGINE == 'truffleruby'
eval(code = <<-EOS, binding, __FILE__, __LINE__ + 1)
class PrivateInstanceTest
private def show_source_test_method
@ -510,7 +508,6 @@ module TestIRB
def test_show_source_private
pend if RUBY_ENGINE == 'truffleruby'
eval(code = <<-EOS, binding, __FILE__, __LINE__ + 1)
class PrivateTest
private def show_source_test_method

View File

@ -598,7 +598,6 @@ module TestIRB
end
def test_local_variables_dependent_code
pend if RUBY_ENGINE == 'truffleruby'
lines = ["a /1#/ do", "2"]
assert_indent_level(lines, 1)
assert_code_block_open(lines, true)
@ -707,7 +706,6 @@ module TestIRB
end
def assert_dynamic_prompt(lines, expected_prompt_list)
pend if RUBY_ENGINE == 'truffleruby'
context = build_context
ruby_lex = RubyLex.new(context)
dynamic_prompt_executed = false