disable leak tracking on tests that fail flakily because of leaks (#10566)

Signed-off-by: Ludovic Orban <lorban@bitronix.be>
This commit is contained in:
Ludovic Orban 2023-09-26 01:55:50 +02:00 committed by GitHub
parent b945ca6e40
commit 45359a063f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -472,6 +472,7 @@ public class HttpClientStreamTest extends AbstractTest
@Tag("DisableLeakTracking:client:HTTP")
@Tag("DisableLeakTracking:client:HTTPS")
@Tag("DisableLeakTracking:client:UNIX_DOMAIN")
@Tag("DisableLeakTracking:server:FCGI")
public void testInputStreamContentProviderThrowingWhileReading(Transport transport) throws Exception
{
start(transport, new Handler.Abstract()

View File

@ -386,7 +386,10 @@ public class HttpClientTimeoutTest extends AbstractTest
@ParameterizedTest
@MethodSource("transports")
@Tag("DisableLeakTracking:client:HTTP")
@Tag("DisableLeakTracking:client:HTTPS")
@Tag("DisableLeakTracking:client:FCGI")
@Tag("DisableLeakTracking:client:UNIX_DOMAIN")
public void testVeryShortTimeout(Transport transport) throws Exception
{
start(transport, new EmptyServerHandler());