From daa5856071a07ed07b33c4691658a185d5e80671 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 20 Jan 2022 10:32:56 -0800 Subject: [PATCH 1/3] Less iterations --- .../IIS/test/Common.FunctionalTests/RequestResponseTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestResponseTests.cs b/src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestResponseTests.cs index 8a19e1e31a2f..48ec1f11318a 100644 --- a/src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestResponseTests.cs +++ b/src/Servers/IIS/IIS/test/Common.FunctionalTests/RequestResponseTests.cs @@ -156,12 +156,10 @@ public async Task PassesThroughCompressionInProcess() } [ConditionalFact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26294")] - [SkipNonHelix("This test takes 5 minutes to run")] public async Task ReadAndWriteSynchronously() { var content = new StringContent(new string('a', 100000)); - for (int i = 0; i < 500; i++) + for (int i = 0; i < 50; i++) { var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content); var responseText = await response.Content.ReadAsStringAsync(); From e0358554ae909b9f338f15ce6e6c91098bc49908 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 20 Jan 2022 10:34:29 -0800 Subject: [PATCH 2/3] Parole --- src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs b/src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs index 4f6d31a66d4d..3d9c6a4ff4e1 100644 --- a/src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs +++ b/src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs @@ -225,7 +225,6 @@ public async Task ReaderThrowsCanceledException() } [ConditionalFact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27400")] public async Task ReaderThrowsResetExceptionOnInvalidBody() { var requestStartedCompletionSource = CreateTaskCompletionSource(); From 6f1d1f4b2b75783cf613d5bea6c5cd96b5f0f3cb Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 20 Jan 2022 10:54:10 -0800 Subject: [PATCH 3/3] Parole --- .../HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Servers/HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs b/src/Servers/HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs index ba42c6810a33..dc7f009f026b 100644 --- a/src/Servers/HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs +++ b/src/Servers/HttpSys/test/FunctionalTests/Listener/RequestBodyTests.cs @@ -17,7 +17,6 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener; public class RequestBodyTests { [ConditionalFact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27399")] public async Task RequestBody_SyncReadDisabledByDefault_WorksWhenEnabled() { string address;