From ecccd6103f07fa66f7799b92dc8144bdc57e5a6b Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Tue, 1 Mar 2022 20:47:52 -0800 Subject: [PATCH] Disable SuperPMI replay jobs until #65332 is fixed Specifically, JitStressRegs=1 and JitStressRegs=8 legs. Note that #65332 only hits 1 failure in each of these legs, and only on arm64 platforms, but we don't have a way to be more precise in our disabling. --- src/coreclr/scripts/superpmi_replay.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/coreclr/scripts/superpmi_replay.py b/src/coreclr/scripts/superpmi_replay.py index 198b0f28ff9403..76adc8c51c9bdb 100644 --- a/src/coreclr/scripts/superpmi_replay.py +++ b/src/coreclr/scripts/superpmi_replay.py @@ -26,11 +26,13 @@ jit_flags = [ "JitStressRegs=0", - "JitStressRegs=1", + # JitStressRegs=1 disabled due to https://github.com/dotnet/runtime/issues/65332 + # "JitStressRegs=1", "JitStressRegs=2", "JitStressRegs=3", "JitStressRegs=4", - "JitStressRegs=8", + # JitStressRegs=8 disabled due to https://github.com/dotnet/runtime/issues/65332 + # "JitStressRegs=8", "JitStressRegs=0x10", "JitStressRegs=0x80", "JitStressRegs=0x1000",