From 2a59bd73125053a8f5a8d6ec129ef81f3da82fad Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 15 Jul 2021 13:06:39 -0700 Subject: [PATCH] Disable YJIT in MJIT tests --- test/lib/jit_support.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index 3bca63a549..779aa8567e 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -39,6 +39,7 @@ module JITSupport '--disable-gems', "--jit-verbose=#{verbose}", "--jit-min-calls=#{min_calls}", "--jit-max-cache=#{max_cache}", ] + args << '--disable-yjit' args << '--jit-wait' if wait args << '--jit-save-temps' if save_temps args << '--jit-debug' if defined?(@jit_debug) && @jit_debug