Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 50d4e1c

Browse files
Paulo Janottistephentoub
authored andcommitted
CurlHandler is deadlocking like WinHttpHandler (#28587)
* CurlHandler is deadlocking like WinHttpHandler This repros consistently for Release on High Sierra. Issue #27746 already tracks it. * Adding a comment to clarify scope
1 parent 21947fb commit 50d4e1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2940,9 +2940,11 @@ public async Task Proxy_SslProxyUnsupported_Throws()
29402940
[Fact]
29412941
public async Task Proxy_UseSecureProxyTunnel_Success()
29422942
{
2943-
if (IsWinHttpHandler || IsNetfxHandler)
2943+
if (IsWinHttpHandler || IsNetfxHandler || IsCurlHandler)
29442944
{
2945-
// Issue #27746: WinHttpHandler and netfx hang on this test
2945+
// Issue #27746: WinHttpHandler and netfx hang on this test.
2946+
// The same happens consistently on macOS 10.13 Release and with some
2947+
// frequency on some Linux flavors, disabling the test for curl handler due to that.
29462948
return;
29472949
}
29482950

0 commit comments

Comments
 (0)