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 b69e591 commit 9b50564Copy full SHA for 9b50564
src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs
@@ -29,7 +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());
+ RemoteExecutor.IsSupported &&
33
+ !PlatformDetection.IsLinuxBionic &&
34
+ (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
35
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";
36
37
public const string DefaultUserPassword = "PLACEHOLDERcorrect20";
0 commit comments