diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2022-12-10 22:21:06 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-10 22:21:06 -0800 |
| commit | 9d59d093bd99ca7f4266dec1e9b4cd8b5efbd2d4 (patch) | |
| tree | 79b98a225e9451e280518f06c33d02d06cbcfbcb /test/lib | |
| parent | 7055574cf9dbcabd9d440c364f3e7b7812527bde (diff) | |
MJIT: Compile methods in batches (#6900)
* MJIT: Compile methods in batches
* MJIT: make mjit-bindgen
* MJIT: Fix RubyVM::MJIT tests
Notes
Notes:
Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'test/lib')
| -rw-r--r-- | test/lib/jit_support.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index b75b0b8847..812c13b925 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -2,7 +2,7 @@ require 'rbconfig' module JITSupport JIT_TIMEOUT = 600 # 10min for each... - JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)' + JIT_SUCCESS_PREFIX = 'JIT success' JIT_RECOMPILE_PREFIX = 'JIT recompile' JIT_COMPACTION_PREFIX = 'JIT compaction \(\d+\.\dms\)' UNSUPPORTED_COMPILERS = [ |
