Skip to content

Commit 9b50564

Browse files
Disable KerberosExecutor on LinuxBionic, it doesn't have GSSAPI libraries (#75047)
Co-authored-by: Filip Navara <[email protected]>
1 parent b69e591 commit 9b50564

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +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());
32+
RemoteExecutor.IsSupported &&
33+
!PlatformDetection.IsLinuxBionic &&
34+
(OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
3335
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";
3436

3537
public const string DefaultUserPassword = "PLACEHOLDERcorrect20";

0 commit comments

Comments
 (0)