Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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();
Expand Down
Loading