From 7924296844fe616b24935018d82f2c65424c4156 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Sat, 31 May 2025 08:17:36 +0900 Subject: [PATCH] skip flaky test ``` 1) Failure: TestProcess#test_warmup_frees_pages [/tmp/ruby/src/trunk-random1/test/ruby/test_process.rb:2772]: <164348> expected but was <165985>. ``` can someone investigate it? --- test/ruby/test_process.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 2d9d1416aa..5497b182f7 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -2769,7 +2769,9 @@ EOS Process.warmup - assert_equal(total_slots_before, GC.stat(:heap_available_slots) + GC.stat(:heap_allocatable_slots)) + # TODO: flaky + # assert_equal(total_slots_before, GC.stat(:heap_available_slots) + GC.stat(:heap_allocatable_slots)) + assert_equal(0, GC.stat(:heap_empty_pages)) assert_operator(GC.stat(:total_freed_pages), :>, 0) end;