From 5ccd8448c860c94856da9b5eebf9a4069fccc267 Mon Sep 17 00:00:00 2001 From: Anipik Date: Wed, 10 Feb 2021 18:34:08 -0800 Subject: [PATCH] disable failing tests on 5.0 branch --- .../tests/FunctionalTests/SslStreamNetworkStreamTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs index 7fdf298cd0ac7..f9c0f986f473d 100644 --- a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs +++ b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamNetworkStreamTest.cs @@ -292,6 +292,7 @@ await TestConfiguration.WhenAllOrAnyFailedWithTimeout( [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(); @@ -355,6 +356,7 @@ public async Task SslStream_UntrustedCaWithCustomCallback_OK(bool usePartialChai [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;