From 56fefc7c7852f735c16dad17a801f68652b8a212 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Thu, 1 Feb 2018 20:58:20 -0500 Subject: [PATCH] Disable SetDelegate_ConnectionSucceeds on Linux (dotnet/corefx#26773) Commit migrated from https://github.com/dotnet/corefx/commit/166f2bacd530d658fa889731e5989b89f2aedee4 --- .../tests/FunctionalTests/HttpClientHandlerTest.AcceptAllCerts.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.AcceptAllCerts.cs b/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.AcceptAllCerts.cs index ab8429e..f1e78f5 100644 --- a/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.AcceptAllCerts.cs +++ b/src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.AcceptAllCerts.cs @@ -24,6 +24,7 @@ namespace System.Net.Http.Functional.Tests Assert.True(HttpClientHandler.DangerousAcceptAnyServerCertificateValidator(null, null, null, SslPolicyErrors.None)); } + [ActiveIssue(25676, TestPlatforms.Linux)] [Theory] [InlineData(SslProtocols.Tls, false)] // try various protocols to ensure we correctly set versions even when accepting all certs [InlineData(SslProtocols.Tls, true)] -- 2.7.4