From 66967685e97c48c416f1887530735925b2500c73 Mon Sep 17 00:00:00 2001 From: Juan Hoyos Date: Mon, 12 Jul 2021 20:05:15 -0700 Subject: [PATCH] Disable GetHostEntry tests on SLES. (#55543) --- .../tests/FunctionalTests/GetHostEntryTest.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs index 7a5d4c899e921..bfb8b48cc4e70 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs @@ -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("")]