Skip to content

Commit 3b68eb3

Browse files
wfurtTomas Weinfurt
andauthored
disable sslv2 tests for now (#36102)
Co-authored-by: Tomas Weinfurt <[email protected]>
1 parent 741e905 commit 3b68eb3

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.SslProtocols.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ public static IEnumerable<object[]> GetAsync_AllowedSSLVersion_Succeeds_MemberDa
113113

114114
[Theory]
115115
[MemberData(nameof(GetAsync_AllowedSSLVersion_Succeeds_MemberData))]
116+
[ActiveIssue("https://github.com/dotnet/runtime/issues/36100", TestPlatforms.Windows)]
116117
public async Task GetAsync_AllowedSSLVersion_Succeeds(SslProtocols acceptedProtocol, bool requestOnlyThisProtocol)
117118
{
118119
using (HttpClientHandler handler = CreateHttpClientHandler())
@@ -250,6 +251,7 @@ await TestHelper.WhenAllCompletedOrAnyFailed(
250251
[InlineData(SslProtocols.Tls11 | SslProtocols.Tls12, SslProtocols.Tls)] // Skip this on WinHttpHandler.
251252
[InlineData(SslProtocols.Tls12, SslProtocols.Tls11)]
252253
[InlineData(SslProtocols.Tls, SslProtocols.Tls12)]
254+
[ActiveIssue("https://github.com/dotnet/runtime/issues/36100", TestPlatforms.Windows)]
253255
public async Task GetAsync_AllowedClientSslVersionDiffersFromServer_ThrowsException(
254256
SslProtocols allowedClientProtocols, SslProtocols acceptedServerProtocols)
255257
{

src/libraries/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public async Task ClientAsyncAuthenticate_EachSupportedProtocol_Success(SslProto
5959

6060
[Fact]
6161
[PlatformSpecific(TestPlatforms.Windows)]
62+
[ActiveIssue("https://github.com/dotnet/runtime/issues/36100")]
6263
public async Task ClientAsyncAuthenticate_Ssl2WithSelf_Success()
6364
{
6465
// Test Ssl2 against itself. This is a standalone test as even on versions where Windows supports Ssl2,

0 commit comments

Comments
 (0)