summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/jit_support.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb
index 1ea8da094e..26f8542dc2 100644
--- a/test/lib/jit_support.rb
+++ b/test/lib/jit_support.rb
@@ -38,10 +38,10 @@ module JITSupport
[stdout, stderr]
end
- def eval_with_jit_without_retry(env = nil, script, verbose: 0, min_calls: 5, save_temps: false, max_cache: 1000, wait: true, timeout: JIT_TIMEOUT)
+ def eval_with_jit_without_retry(env = nil, script, verbose: 0, call_threshold: 5, save_temps: false, max_cache: 1000, wait: true, timeout: JIT_TIMEOUT)
args = [
'--disable-gems', "--mjit-verbose=#{verbose}",
- "--mjit-min-calls=#{min_calls}", "--mjit-max-cache=#{max_cache}",
+ "--mjit-call-threshold=#{call_threshold}", "--mjit-max-cache=#{max_cache}",
]
args << '--disable-yjit'
args << '--mjit-wait' if wait