Skip to content

Commit 15e717a

Browse files
authored
Unquarantine shared tests (dotnet#38026)
1 parent b04bd48 commit 15e717a

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,6 @@ public async Task AbortingTheConnectionSendsFIN()
524524

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

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

598596
[Theory]
599597
[MemberData(nameof(ConnectionMiddlewareDataName))]
600-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35686")]
601598
public async Task ConnectionClosedTokenFiresOnServerAbort(string listenOptionsName)
602599
{
603600
var testContext = new TestServiceContext(LoggerFactory);

src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ await connection.Send(
257257

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

827826
[Fact]
828-
[CollectDump]
829-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26306")]
830827
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
831828
{
832829
var headerSize = 1024 * 1024; // 1 MB for each header value

0 commit comments

Comments
 (0)