Skip to content

Commit 745cdb3

Browse files
committed
Temporarily disable the KerberosExecutor tests on ARM32 to unblock CI
1 parent 916f1ad commit 745cdb3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ public class KerberosExecutor : IDisposable
2929
private readonly ITestOutputHelper _testOutputHelper;
3030

3131
public static bool IsSupported { get; } =
32-
RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
33-
32+
RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) &&
33+
// ARM32 is cursed (https://github.com/dotnet/runtime/issues/73343)
34+
!PlatformDetection.IsArmProcess;
3435
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";
3536

3637
public const string DefaultUserPassword = "PLACEHOLDERcorrect20";

0 commit comments

Comments
 (0)