summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2023-03-31 22:54:45 +0100
committergit <svn-admin@ruby-lang.org>2023-03-31 22:02:58 +0000
commit23892d95f5fec8950ca3f9686a630c87e02cf201 (patch)
treeb1be9f4834b7d8cb2341a6bfbbdcfd7acdf2cd46 /test
parent8938f146abd49411b0d20b48675c16d61f58927c (diff)
downloadruby-23892d95f5fec8950ca3f9686a630c87e02cf201.tar.gz
[ruby/irb] Drop unnecessary pends for truffleruby
https://github.com/ruby/irb/commit/2517039812
Diffstat (limited to 'test')
-rw-r--r--test/irb/test_cmd.rb2
-rw-r--r--test/irb/test_workspace.rb1
2 files changed, 1 insertions, 2 deletions
diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb
index dc71c784e9..8af7562505 100644
--- a/test/irb/test_cmd.rb
+++ b/test/irb/test_cmd.rb
@@ -858,7 +858,7 @@ module TestIRB
def test_edit_with_constant
# const_source_location is supported after Ruby 2.7
- omit if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') || RUBY_ENGINE == 'truffleruby'
+ omit if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0')
out, err = execute_lines(
"edit IRB::Irb"
diff --git a/test/irb/test_workspace.rb b/test/irb/test_workspace.rb
index 9b10c27b89..c6b8aa1e99 100644
--- a/test/irb/test_workspace.rb
+++ b/test/irb/test_workspace.rb
@@ -83,7 +83,6 @@ module TestIRB
def test_toplevel_binding_local_variables
- pend if RUBY_ENGINE == 'truffleruby'
bug17623 = '[ruby-core:102468]'
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
top_srcdir = "#{__dir__}/../.."