Used respond_to? check for compaction in test_gc_compact.rb

This commit is contained in:
Peter Zhu 2024-10-11 14:01:08 -04:00
Родитель 95abf679c5
Коммит 6a88e9d430
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ end
class TestGCCompact < Test::Unit::TestCase
module CompactionSupportInspector
def supports_auto_compact?
GC::OPTS.include?("GC_COMPACTION_SUPPORTED")
GC.respond_to?(:compact)
end
end