Disable SslStream_UntrustedCaWithCustomCallback_* on OSX (#47025)
authorJuan Hoyos <juan.hoyos@microsoft.com>
Fri, 15 Jan 2021 06:02:35 +0000 (22:02 -0800)
committerGitHub <noreply@github.com>
Fri, 15 Jan 2021 06:02:35 +0000 (22:02 -0800)
src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs

index 3678147..7768f6f 100644 (file)
@@ -216,6 +216,7 @@ namespace System.Net.Security.Tests
         [Theory]
         [InlineData(true)]
         [InlineData(false)]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/46837", TestPlatforms.OSX)]
         public async Task SslStream_UntrustedCaWithCustomCallback_OK(bool usePartialChain)
         {
             var rnd = new Random();
@@ -279,6 +280,7 @@ namespace System.Net.Security.Tests
         [PlatformSpecific(TestPlatforms.AnyUnix)]
         [InlineData(true)]
         [InlineData(false)]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/46837", TestPlatforms.OSX)]
         public async Task SslStream_UntrustedCaWithCustomCallback_Throws(bool customCallback)
         {
             string errorMessage;