From 7f19122f9d0927d96be42d4ce96b8cee42ab6532 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Sat, 17 Aug 2019 03:41:57 +0200 Subject: [PATCH] Disable AssociatePersistedKey_CAPIviaCNG_RSA on arm64 (dotnet/corefx#40375) Commit migrated from https://github.com/dotnet/corefx/commit/9ea74a6d3ec09fef63975338105abdca6fac8e1c --- .../tests/CertificateCreation/PrivateKeyAssociationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertificateCreation/PrivateKeyAssociationTests.cs b/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertificateCreation/PrivateKeyAssociationTests.cs index 29b09ef..0781d99 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertificateCreation/PrivateKeyAssociationTests.cs +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertificateCreation/PrivateKeyAssociationTests.cs @@ -75,7 +75,7 @@ namespace System.Security.Cryptography.X509Certificates.Tests.CertificateCreatio } } - [Theory] + [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotArm64Process))] // [ActiveIssue(36330)] [PlatformSpecific(TestPlatforms.Windows)] [InlineData(PROV_RSA_FULL, KeyNumber.Signature)] [InlineData(PROV_RSA_FULL, KeyNumber.Exchange)] -- 2.7.4