summaryrefslogtreecommitdiff
path: root/tool/lib/core_assertions.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2021-12-13 23:07:46 -0800
committer<[email protected]>2021-12-13 23:07:46 -0800
commit1a63468831524f68e73cbb068071652c6486cfc6 ()
tree37cb7808878786d426815c6b137da9ee2ca08e29 /tool/lib/core_assertions.rb
parenta2839d717874a277da1d553336a409164fa833ad (diff)
Prepare for removing RubyVM::JIT (#5262)
Notes: Merged-By: k0kubun <[email protected]>
-rw-r--r--tool/lib/core_assertions.rb2
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)