Disable SuperPMI replay jobs until #65332 is fixed (#66062)
authorBruce Forstall <brucefo@microsoft.com>
Wed, 2 Mar 2022 19:39:48 +0000 (11:39 -0800)
committerGitHub <noreply@github.com>
Wed, 2 Mar 2022 19:39:48 +0000 (11:39 -0800)
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

index 198b0f2..76adc8c 100644 (file)
@@ -26,11 +26,13 @@ parser.add_argument("-log_directory", help="path to the directory containing sup
 
 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",