diff options
author | Takashi Kokubun <[email protected]> | 2021-12-13 23:07:46 -0800 |
---|---|---|
committer | <[email protected]> | 2021-12-13 23:07:46 -0800 |
commit | 1a63468831524f68e73cbb068071652c6486cfc6 () | |
tree | 37cb7808878786d426815c6b137da9ee2ca08e29 /tool/lib/core_assertions.rb | |
parent | a2839d717874a277da1d553336a409164fa833ad (diff) |
Prepare for removing RubyVM::JIT (#5262)
Notes: Merged-By: k0kubun <[email protected]>
-rw-r--r-- | tool/lib/core_assertions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ module Test def assert_no_memory_(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_ may consider MJIT memory usage as ' if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? require_relative 'memory_status' raise Test::Unit::PendedError, "unsupported platform" unless defined?(Memory::Status) |