summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit/testcase.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-11 18:03:40 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-11 18:10:15 +0900
commitaebd0a873e9de23544426e5a27e0fb68140d474a (patch)
tree27b2dac22d64ec4e9964bdb65c606af127a227b7 /tool/lib/test/unit/testcase.rb
parentb568e6a1304e8b9398ae4f8cc8a09ffa7cf89d8b (diff)
Removed maglev related code because it's not active status now
Diffstat (limited to 'tool/lib/test/unit/testcase.rb')
-rw-r--r--tool/lib/test/unit/testcase.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/tool/lib/test/unit/testcase.rb b/tool/lib/test/unit/testcase.rb
index 544628f128..28114a88ea 100644
--- a/tool/lib/test/unit/testcase.rb
+++ b/tool/lib/test/unit/testcase.rb
@@ -32,15 +32,6 @@ module Test
##
# Is this running on mri?
- def maglev? platform = defined?(RUBY_ENGINE) && RUBY_ENGINE
- "maglev" == platform
- end
-
- module_function :maglev?
-
- ##
- # Is this running on mri?
-
def mri? platform = RUBY_DESCRIPTION
/^ruby/ =~ platform
end