We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916f1ad commit 745cdb3Copy full SHA for 745cdb3
src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs
@@ -29,8 +29,9 @@ public class KerberosExecutor : IDisposable
29
private readonly ITestOutputHelper _testOutputHelper;
30
31
public static bool IsSupported { get; } =
32
- RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
33
-
+ RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) &&
+ // ARM32 is cursed (https://github.com/dotnet/runtime/issues/73343)
34
+ !PlatformDetection.IsArmProcess;
35
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";
36
37
public const string DefaultUserPassword = "PLACEHOLDERcorrect20";
0 commit comments