Skip to content

Commit

Permalink
Merge pull request #22 from k0kubun/rubyvm-mjit
Browse files Browse the repository at this point in the history
s/RubyVM::JIT/RubyVM::MJIT/g
  • Loading branch information
k0kubun committed Dec 15, 2021
2 parents 7c5d5ee + 516940c commit d093cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lib/core_assertions.rb
Expand Up @@ -100,7 +100,7 @@ def syntax_check(code, fname, line)

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

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

0 comments on commit d093cc1

Please sign in to comment.