Disable TestVerify test failing in outerloop on Unix (dotnet/corefx#39488)
authorStephen Toub <stoub@microsoft.com>
Mon, 15 Jul 2019 17:55:36 +0000 (13:55 -0400)
committerGitHub <noreply@github.com>
Mon, 15 Jul 2019 17:55:36 +0000 (13:55 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/0441d3e8ed8779f52a759890ac3e94fb7fe56bc0

src/libraries/System.Security.Cryptography.X509Certificates/tests/CertTests.cs

index caa7bf2..4962341 100644 (file)
@@ -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");