From d69b55a0b16c223525e13b14859126c585ff9534 Mon Sep 17 00:00:00 2001 From: Karel Zikmund Date: Fri, 3 Apr 2020 16:23:40 -0700 Subject: [PATCH] Disable test DnsGetHostEntry_LocalHost_ReturnsFqdnAndLoopbackIPs --- .../tests/FunctionalTests/GetHostEntryTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs index 679d336c0211f..7677b365d5b71 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs @@ -186,6 +186,7 @@ public async Task DnsGetHostEntry_BadName_ThrowsArgumentOutOfRangeException(stri await Assert.ThrowsAnyAsync(() => Task.Factory.FromAsync(Dns.BeginGetHostEntry, Dns.EndGetHostEntry, hostNameOrAddress, null)); } + [ActiveIssue("https://github.com/dotnet/runtime/issues/34317")] [Theory] [InlineData(0)] [InlineData(1)]