Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,6 @@ public async Task AbortingTheConnectionSendsFIN()

[Theory]
[MemberData(nameof(ConnectionMiddlewareDataName))]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23043")]
public async Task ConnectionClosedTokenFiresOnClientFIN(string listenOptionsName)
{
var testContext = new TestServiceContext(LoggerFactory);
Expand Down Expand Up @@ -560,7 +559,6 @@ await connection.Send(

[Theory]
[MemberData(nameof(ConnectionMiddlewareDataName))]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/37750")]
public async Task ConnectionClosedTokenFiresOnServerFIN(string listenOptionsName)
{
var testContext = new TestServiceContext(LoggerFactory);
Expand Down Expand Up @@ -597,7 +595,6 @@ await connection.ReceiveEnd($"HTTP/1.1 200 OK",

[Theory]
[MemberData(nameof(ConnectionMiddlewareDataName))]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35686")]
public async Task ConnectionClosedTokenFiresOnServerAbort(string listenOptionsName)
{
var testContext = new TestServiceContext(LoggerFactory);
Expand Down
3 changes: 0 additions & 3 deletions src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ await connection.Send(

[Theory]
[MemberData(nameof(ConnectionMiddlewareData))]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33455")]
public async Task WritingToConnectionAfterUnobservedCloseTriggersRequestAbortedToken(ListenOptions listenOptions)
{
const int connectionPausedEventId = 4;
Expand Down Expand Up @@ -825,8 +824,6 @@ await connection.Receive(
}

[Fact]
[CollectDump]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26306")]
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
{
var headerSize = 1024 * 1024; // 1 MB for each header value
Expand Down