Skip to content

Commit

Permalink
Disable GetHostEntry tests on SLES. (#55543)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoyosjs authored Jul 13, 2021
1 parent c7ebb65 commit 6696768
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ public async Task Dns_GetHostEntryAsync_IPAddress_Ok()
// [ActiveIssue("https://github.com/dotnet/runtime/issues/1488", TestPlatforms.OSX)]
PlatformDetection.IsNotOSX &&
// [ActiveIssue("https://github.com/dotnet/runtime/issues/51377", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
!PlatformDetection.IsiOS && !PlatformDetection.IstvOS && !PlatformDetection.IsMacCatalyst;
!PlatformDetection.IsiOS && !PlatformDetection.IstvOS && !PlatformDetection.IsMacCatalyst &&
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55271")]
!PlatformDetection.IsSLES;

[ConditionalTheory(nameof(GetHostEntryWorks))]
[InlineData("")]
Expand Down

0 comments on commit 6696768

Please sign in to comment.