Skip to content

Commit

Permalink
Try enable all multiple HTTP/2 connections tests on the new schedulin…
Browse files Browse the repository at this point in the history
…g logic

It enables all disabled multiple HTTP/2 connection tests to check if it now work on the new connection scheduling logic introduced by #53851.
  • Loading branch information
alnikola committed Jul 15, 2021
1 parent 90b8ddd commit 6e29832
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2078,7 +2078,6 @@ public sealed class SocketsHttpHandlerTest_Http2 : HttpClientHandlerTest_Http2
public SocketsHttpHandlerTest_Http2(ITestOutputHelper output) : base(output) { }

[ConditionalFact(nameof(SupportsAlpn))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/41078")]
public async Task Http2_MultipleConnectionsEnabled_ConnectionLimitNotReached_ConcurrentRequestsSuccessfullyHandled()
{
const int MaxConcurrentStreams = 2;
Expand Down Expand Up @@ -2119,7 +2118,6 @@ public async Task Http2_MultipleConnectionsEnabled_ConnectionLimitNotReached_Con
}

[ConditionalFact(nameof(SupportsAlpn))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/45204")]
public async Task Http2_MultipleConnectionsEnabled_InfiniteRequestsCompletelyBlockOneConnection_RemaningRequestsAreHandledByNewConnection()
{
const int MaxConcurrentStreams = 2;
Expand Down Expand Up @@ -2214,7 +2212,6 @@ public async Task Http2_MultipleConnectionsEnabled_OpenAndCloseMultipleConnectio

[ConditionalFact(nameof(SupportsAlpn))]
[OuterLoop("Incurs long delay")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/43877")]
public async Task Http2_MultipleConnectionsEnabled_IdleConnectionTimeoutExpired_ConnectionRemovedAndNewCreated()
{
const int MaxConcurrentStreams = 2;
Expand Down

0 comments on commit 6e29832

Please sign in to comment.