From 745cdb3adfbd81c7ded6f36c01a6febccb045352 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Fri, 5 Aug 2022 18:35:38 +0000 Subject: [PATCH] Temporarily disable the KerberosExecutor tests on ARM32 to unblock CI --- .../tests/System/Net/Security/Kerberos/KerberosExecutor.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs b/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs index 9b1463eed72499..b76b017d4bb34f 100644 --- a/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs +++ b/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs @@ -29,8 +29,9 @@ public class KerberosExecutor : IDisposable private readonly ITestOutputHelper _testOutputHelper; public static bool IsSupported { get; } = - RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()); - + RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) && + // ARM32 is cursed (https://github.com/dotnet/runtime/issues/73343) + !PlatformDetection.IsArmProcess; public const string DefaultAdminPassword = "PLACEHOLDERadmin."; public const string DefaultUserPassword = "PLACEHOLDERcorrect20";