From 6969d232abb9b2ee561853c2d583e4b36aba1370 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 01:31:21 +0000 Subject: [PATCH 1/2] Skip DnsGetHostAddresses_LocalhostSubdomainWithTrailingDot on Android Android emulator DNS resolver returns non-loopback addresses for .localhost subdomain queries, causing Assert.All failures. Linked KBE: #127965 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../tests/FunctionalTests/GetHostAddressesTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs index ed65832403c3f4..532ee396450df1 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs @@ -308,6 +308,7 @@ public async Task DnsGetHostAddresses_LocalhostAndSubdomain_BothReturnLoopback() } // RFC 6761: Localhost subdomains with trailing dot should work (e.g., "foo.localhost.") + [ActiveIssue("https://github.com/dotnet/runtime/issues/127965", TestPlatforms.Android)] [Theory] [InlineData("foo.localhost.")] [InlineData("bar.test.localhost.")] From d48f0b0d7eeb426ecd4550254949b2a8ec834333 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 9 May 2026 01:31:26 +0000 Subject: [PATCH 2/2] ci: trigger checks