From 51f948727d8e76418fc1d1f31a3f5b9d324eb979 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Fri, 27 Jul 2018 05:52:01 +0000 Subject: test_jit.rb: test unload_units git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/lib/jit_support.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'test/lib') diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index b3fe3efbcb..2ee1329e31 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -28,8 +28,11 @@ module JITSupport end module_function - def eval_with_jit(env = nil, script, verbose: 0, min_calls: 5, save_temps: false, timeout: JIT_TIMEOUT) - args = ['--disable-gems', '--jit-wait', "--jit-verbose=#{verbose}", "--jit-min-calls=#{min_calls}"] + def eval_with_jit(env = nil, script, verbose: 0, min_calls: 5, save_temps: false, max_cache: 1000, timeout: JIT_TIMEOUT) + args = [ + '--disable-gems', '--jit-wait', "--jit-verbose=#{verbose}", + "--jit-min-calls=#{min_calls}", "--jit-max-cache=#{max_cache}", + ] args << '--jit-save-temps' if save_temps args << '-e' << script args.unshift(env) if env -- cgit v1.2.3