summaryrefslogtreecommitdiff
path: root/tool/lib/gc_compact_checker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/lib/gc_compact_checker.rb')
-rw-r--r--tool/lib/gc_compact_checker.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/tool/lib/gc_compact_checker.rb b/tool/lib/gc_compact_checker.rb
deleted file mode 100644
index a6ef3d3ce8..0000000000
--- a/tool/lib/gc_compact_checker.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# 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']