summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2024-06-10 11:11:18 -0400
committerPeter Zhu <[email protected]>2024-06-10 12:36:25 -0400
commit556bbf64e084c3a310dce3ee12d18222ce907781 (patch)
tree30976fc57964f7172e22794b6bef9ededb691155 /test/ruby
parent1d0d8a89d404147f23b3d3ed1e1353be8adc2f2b (diff)
Don't skip test_inspect_under_gc_compact_stress
Commit 1471a16 seems to have fixed this flaky test, so we don't need to skip it for YJIT or RJIT anymore.
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_symbol.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index 41b71097d1..2275de06a8 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -120,8 +120,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