diff options
author | Peter Zhu <[email protected]> | 2023-10-27 14:28:56 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2023-10-27 14:28:56 -0400 |
commit | d654d580f388a1ffc60e74d4b05f753c884ec543 (patch) | |
tree | 8bd04011f8ba18523d54cd25463770f4bac921c5 | |
parent | c201dbc0ada03b985e297d22d6dfa24b7bac12ce (diff) |
Revert "Add debug info for flaky test_warmup_frees_pages"
This reverts commit db3b814cb0ff6ffe83fe0c4f66cd6ce8951c3ca7.
This debugging information is no longer needed.
-rw-r--r-- | test/ruby/test_process.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index f180b6368d..47228d35e6 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -2776,7 +2776,7 @@ EOS # Number of pages freed should cause equal increase in number of allocatable pages. assert_equal(total_pages_before, GC.stat(:heap_eden_pages) + GC.stat(:heap_allocatable_pages)) - assert_equal(0, GC.stat(:heap_tomb_pages), GC.stat) + assert_equal(0, GC.stat(:heap_tomb_pages)) assert_operator(GC.stat(:total_freed_pages), :>, 0) end; end |