diff options
author | Naoto Ono <[email protected]> | 2025-04-01 18:20:13 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-04-01 09:20:13 +0000 |
commit | a671b25525279706d1fa2ee3b25ef45e3ec0eb89 (patch) | |
tree | 65a021ebe1c7157e59d15f4e4fb74b2e5564e080 | |
parent | 67a7d4a0a83638ac0c33bfb21d3d87d996946a45 (diff) |
[Bug #21203] Skip TestGc#test_gc_parameter_init_slots since it is flaky (#13025)
https://bugs.ruby-lang.org/issues/21203
TestGc#test_gc_parameter_init_slots is a flaky test that fails intermittently. Until the issue with flakiness is resolved, I will skip it.
Notes
Notes:
Merged-By: ono-max <[email protected]>
-rw-r--r-- | test/ruby/test_gc.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index 7ae05e206f..edf221673e 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -533,6 +533,8 @@ class TestGc < Test::Unit::TestCase end def test_gc_parameter_init_slots + omit "[Bug #21203] This test is flaky and intermittently failing now" + assert_separately([], __FILE__, __LINE__, <<~RUBY, timeout: 60) # Constant from gc.c. GC_HEAP_INIT_SLOTS = 10_000 |