Skip to content

Commit

Permalink
Disable test SendMoreThanStreamLimitRequests_Succeeds for all QUIC (d…
Browse files Browse the repository at this point in the history
…otnet#56566)

Disable the test also for MsQuic, not just Mock.

Test types:
- System.Net.Http.Functional.Tests.SocketsHttpHandlerTest_Http3_MsQuic
- System.Net.Http.Functional.Tests.SocketsHttpHandlerTest_Http3_Mock

Disabled test tracked by dotnet#55957
  • Loading branch information
karelz committed Jul 30, 2021
1 parent 38af2b8 commit fae1412
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,12 @@ public async Task ClientSettingsReceived_Success(int headerSizeLimit)
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/55957")]
[InlineData(10)]
[InlineData(100)]
[InlineData(1000)]
public async Task SendMoreThanStreamLimitRequests_Succeeds(int streamLimit)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55957")]
if (this.UseQuicImplementationProvider == QuicImplementationProviders.Mock)
{
return;
}

using Http3LoopbackServer server = CreateHttp3LoopbackServer(new Http3Options(){ MaxBidirectionalStreams = streamLimit });

Task serverTask = Task.Run(async () =>
Expand Down

0 comments on commit fae1412

Please sign in to comment.