Skip to content

Commit 6696768

Browse files
authored
Disable GetHostEntry tests on SLES. (#55543)
1 parent c7ebb65 commit 6696768

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ public async Task Dns_GetHostEntryAsync_IPAddress_Ok()
2828
// [ActiveIssue("https://github.com/dotnet/runtime/issues/1488", TestPlatforms.OSX)]
2929
PlatformDetection.IsNotOSX &&
3030
// [ActiveIssue("https://github.com/dotnet/runtime/issues/51377", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
31-
!PlatformDetection.IsiOS && !PlatformDetection.IstvOS && !PlatformDetection.IsMacCatalyst;
31+
!PlatformDetection.IsiOS && !PlatformDetection.IstvOS && !PlatformDetection.IsMacCatalyst &&
32+
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55271")]
33+
!PlatformDetection.IsSLES;
3234

3335
[ConditionalTheory(nameof(GetHostEntryWorks))]
3436
[InlineData("")]

0 commit comments

Comments
 (0)