summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2024-12-04 14:29:47 -0500
committerPeter Zhu <[email protected]>2024-12-05 10:33:26 -0500
commitce1ad1b816f912d0750669c57211d72ea723e28d (patch)
tree4e9a68feb302cfa5790a96ea8c551873ff1d36e5 /test
parent26ab20fec1d8ca7c168e8537383a0d8274a7d273 (diff)
Standardize on the name "modular GC"
We have name fragmentation for this feature, including "shared GC", "modular GC", and "external GC". This commit standardizes the feature name to "modular GC" and the implementation to "GC library".
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12261
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_rubyoptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index fd52255acd..f61466c035 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -310,7 +310,7 @@ class TestRubyOptions < Test::Unit::TestCase
def test_enabled_gc
omit unless /linux|darwin/ =~ RUBY_PLATFORM
- if RbConfig::CONFIG['shared_gc_dir'].length > 0
+ if RbConfig::CONFIG['modular_gc_dir'].length > 0
assert_match(/\+GC/, RUBY_DESCRIPTION)
else
assert_no_match(/\+GC/, RUBY_DESCRIPTION)