From d323c2171c335962f6e3a9af4a7ffa5d97c799be Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Jun 2026 12:22:34 +0000 Subject: [PATCH 1/2] Initial plan From 9ff8406fd81c971ad40522f80974c2fe532e334d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 2 Jun 2026 12:39:08 +0000 Subject: [PATCH 2/2] Disable Android X509 name constraint failures Co-authored-by: simonrozsival <374616+simonrozsival@users.noreply.github.com> --- .../tests/X509Certificates/DynamicChainTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libraries/System.Security.Cryptography/tests/X509Certificates/DynamicChainTests.cs b/src/libraries/System.Security.Cryptography/tests/X509Certificates/DynamicChainTests.cs index b763cfc2e299a4..8a7d0131956790 100644 --- a/src/libraries/System.Security.Cryptography/tests/X509Certificates/DynamicChainTests.cs +++ b/src/libraries/System.Security.Cryptography/tests/X509Certificates/DynamicChainTests.cs @@ -527,6 +527,7 @@ public static void CustomTrustModeWithNoCustomTrustCerts() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/128890", TestPlatforms.Android)] public static void NameConstraintViolation_PermittedTree_Dns() { SubjectAlternativeNameBuilder builder = new SubjectAlternativeNameBuilder(); @@ -542,6 +543,7 @@ public static void NameConstraintViolation_PermittedTree_Dns() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/128890", TestPlatforms.Android)] public static void NameConstraintViolation_ExcludedTree_Dns() { SubjectAlternativeNameBuilder builder = new SubjectAlternativeNameBuilder(); @@ -598,6 +600,7 @@ public static void NameConstraintViolation_InvalidGeneralNames() } [ConditionalFact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/128890", TestPlatforms.Android)] public static void NameConstraintViolation_ExcludedTree_Upn() { if (PlatformDetection.UsesAppleCrypto && !AppleHasExcludedSubTreeHandling) @@ -651,6 +654,7 @@ public static void NameConstraintViolation_ExcludedTree_Upn() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/128890", TestPlatforms.Android)] public static void NameConstraintViolation_PermittedTree_Upn() { SubjectAlternativeNameBuilder builder = new SubjectAlternativeNameBuilder();