From 5f0279422f4e93e6ffcd04100eb5d9525b83aa9f Mon Sep 17 00:00:00 2001 From: Karel Zikmund Date: Tue, 20 Jul 2021 17:41:00 +0200 Subject: [PATCH 1/2] Disable test Connect_DualMode_DnsConnect_RetrievedEndPoints_Success on Linux Disabled test tracked by #54677 and #55709 --- .../System.Net.Sockets/tests/FunctionalTests/Connect.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs index a491fada91864..96e4f93e35c54 100644 --- a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs +++ b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs @@ -109,6 +109,8 @@ public async Task Connect_DualMode_MultiAddressFamilyConnect_RetrievedEndPoints_ } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/54677", TestPlatforms.AnyUnix)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/55709", TestPlatforms.AnyUnix)] public async Task Connect_DualMode_DnsConnect_RetrievedEndPoints_Success() { var localhostAddresses = Dns.GetHostAddresses("localhost"); From 636a0aab81c282a951b0d2e638b508863dc1976d Mon Sep 17 00:00:00 2001 From: Karel Zikmund Date: Tue, 20 Jul 2021 19:47:01 +0200 Subject: [PATCH 2/2] Update Connect.cs --- .../System.Net.Sockets/tests/FunctionalTests/Connect.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs index 96e4f93e35c54..e4c64fc2e35bf 100644 --- a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs +++ b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs @@ -109,8 +109,8 @@ public async Task Connect_DualMode_MultiAddressFamilyConnect_RetrievedEndPoints_ } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/54677", TestPlatforms.AnyUnix)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/55709", TestPlatforms.AnyUnix)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/54677", TestPlatforms.Linux)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/55709", TestPlatforms.Linux)] public async Task Connect_DualMode_DnsConnect_RetrievedEndPoints_Success() { var localhostAddresses = Dns.GetHostAddresses("localhost");