diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs index 95883938ba5ba4..e5169e46580122 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostAddressesTest.cs @@ -247,6 +247,7 @@ public async Task DnsGetHostAddresses_LocalhostSubdomain_ReturnsLoopback(string // RFC 6761: "*.localhost" subdomains should respect AddressFamily parameter. // OS resolver is tried first, falling back to plain "localhost" resolution. + [ActiveIssue("https://github.com/dotnet/runtime/issues/128253", TestPlatforms.Android)] [Theory] [InlineData(AddressFamily.InterNetwork)] [InlineData(AddressFamily.InterNetworkV6)] diff --git a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs index 56ea958a9c7e81..e5474f096f3bcf 100644 --- a/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs +++ b/src/libraries/System.Net.NameResolution/tests/FunctionalTests/GetHostEntryTest.cs @@ -412,6 +412,7 @@ public async Task DnsGetHostEntry_LocalhostWithTrailingDot_ReturnsLoopback() // RFC 6761: "*.localhost" subdomains should respect AddressFamily parameter. // OS resolver is tried first, falling back to plain "localhost" resolution. + [ActiveIssue("https://github.com/dotnet/runtime/issues/128253", TestPlatforms.Android)] [Theory] [InlineData(AddressFamily.InterNetwork)] [InlineData(AddressFamily.InterNetworkV6)]