From cfd8fa56b4a9907987f91a73e94e28ab4e23993b Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Mon, 15 Jul 2019 13:55:36 -0400 Subject: [PATCH] Disable TestVerify test failing in outerloop on Unix (dotnet/corefx#39488) Commit migrated from https://github.com/dotnet/corefx/commit/0441d3e8ed8779f52a759890ac3e94fb7fe56bc0 --- .../tests/CertTests.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertTests.cs b/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertTests.cs index caa7bf2..4962341 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertTests.cs +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/CertTests.cs @@ -98,6 +98,7 @@ namespace System.Security.Cryptography.X509Certificates.Tests } } + [ActiveIssue(29779)] [ConditionalFact] [OuterLoop("May require using the network, to download CRLs and intermediates")] public void TestVerify() @@ -117,11 +118,6 @@ namespace System.Security.Cryptography.X509Certificates.Tests if (!success) { LogVerifyErrors(microsoftDotComIssuer, "MicrosoftDotComIssuerBytes"); - if (PlatformDetection.IsMacOsMojaveOrHigher) - { - // ActiveIssue: 29779 - throw new SkipTestException("Certificate validation unstable on 10.14"); - } } Assert.True(success, "MicrosoftDotComIssuerBytes"); -- 2.7.4