summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit/parallel.rb
diff options
context:
space:
mode:
authorKoichi Sasada <[email protected]>2021-08-05 16:21:15 +0900
committerKoichi Sasada <[email protected]>2021-08-05 17:11:50 +0900
commit228b3e43be5e01e204751be2035fee3576a7ab74 (patch)
tree5bbffff35ee75d5e3fe597e19f50ba9b0d5967e6 /tool/lib/test/unit/parallel.rb
parent405644f38c64dca3524e3fa32fd9722bcd2a1e0b (diff)
check GC.enable'd status
Check GC.enable'd status before and after test execution. Write this checker in gc_checker.rb, it was renamed from gc_compact_checker.rb.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4710
Diffstat (limited to 'tool/lib/test/unit/parallel.rb')
-rw-r--r--tool/lib/test/unit/parallel.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/test/unit/parallel.rb b/tool/lib/test/unit/parallel.rb
index ccaf1a913a..0807b3916b 100644
--- a/tool/lib/test/unit/parallel.rb
+++ b/tool/lib/test/unit/parallel.rb
@@ -6,7 +6,7 @@ require "profile_test_all" if ENV.key?('RUBY_TEST_ALL_PROFILE')
require "tracepointchecker"
require "zombie_hunter"
require "iseq_loader_checker"
-require "gc_compact_checker"
+require "gc_checker"
module Test
module Unit