summaryrefslogtreecommitdiff
path: root/tool/lib/gc_compact_checker.rb
blob: a6ef3d3ce82c4973aa60c22df8a157915554c42b (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module GCCompactChecker
  def after_teardown
    super
    GC.compact
  end
end

Test::Unit::TestCase.include GCCompactChecker if ENV['RUBY_TEST_GC_COMPACT']