summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2024-04-23 09:51:50 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2024-04-23 09:51:51 -0700
commit87396dbe5d6597dafcba31afb5b9ba6216d604c5 (patch)
treefe31daeaeed841880d39713ea3b330b2927f6de3 /test/ruby
parent729e08cb18333fe9498da04f619a7d6b755252f7 (diff)
Skip test_inspect_under_gc_compact_stress w/ RJIT too
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_symbol.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index 4170f62899..41b71097d1 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -121,6 +121,7 @@ class TestSymbol < Test::Unit::TestCase
def test_inspect_under_gc_compact_stress
omit "compaction doesn't work well on s390x" if RUBY_PLATFORM =~ /s390x/ # https://github.com/ruby/ruby/pull/5077
omit "very flaky on many platforms, more so with YJIT enabled" if defined?(RubyVM::YJIT) && RubyVM::YJIT.enabled?
+ omit "very flaky on many platforms, more so with RJIT enabled" if defined?(RubyVM::RJIT) && RubyVM::RJIT.enabled?
EnvUtil.under_gc_compact_stress do
assert_inspect_evaled(':testing')
end