From b02e13abab3d6f499751af2ad1ae6333fb4e633d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Nov 2020 14:33:35 -0800 Subject: [PATCH] Skip some PKCS9 tests on NetFx (#45213) --- .../tests/Pkcs9AttributeTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Security.Cryptography.Pkcs/tests/Pkcs9AttributeTests.cs b/src/libraries/System.Security.Cryptography.Pkcs/tests/Pkcs9AttributeTests.cs index 07c192c0f7a..3b653450eb4 100644 --- a/src/libraries/System.Security.Cryptography.Pkcs/tests/Pkcs9AttributeTests.cs +++ b/src/libraries/System.Security.Cryptography.Pkcs/tests/Pkcs9AttributeTests.cs @@ -178,6 +178,7 @@ public static void DocumentDescriptionFromRawData() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/45168", TargetFrameworkMonikers.NetFramework)] public static void DocumentDescriptionMissingTerminator() { byte[] rawData = "041e4d00790020004400650073006300720069007000740069006f006e002100".HexToByteArray(); @@ -251,6 +252,7 @@ public static void DocumentNameFromRawData() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/45168", TargetFrameworkMonikers.NetFramework)] public static void DocumentNameMissingTerminator() { byte[] rawData = "04104d00790020004e0061006d0065002100".HexToByteArray(); -- GitLab