Skip to content

Commit f755062

Browse files
authored
Merge pull request #37 from k0kubun/rubyvm-mjit
s/RubyVM::JIT/RubyVM::MJIT/g
2 parents 823471c + 736460a commit f755062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/core_assertions.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def syntax_check(code, fname, line)
100100

101101
def assert_no_memory_leak(args, prepare, code, message=nil, limit: 2.0, rss: false, **opt)
102102
# TODO: consider choosing some appropriate limit for MJIT and stop skipping this once it does not randomly fail
103-
pend 'assert_no_memory_leak may consider MJIT memory usage as leak' if defined?(RubyVM::JIT) && RubyVM::JIT.enabled?
103+
pend 'assert_no_memory_leak may consider MJIT memory usage as leak' if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
104104

105105
require_relative 'memory_status'
106106
raise Test::Unit::PendedError, "unsupported platform" unless defined?(Memory::Status)

0 commit comments

Comments
 (0)