Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HttpClientMiniStressTest: Disable parallelism #34941

Merged
merged 2 commits into from
Apr 14, 2020
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

namespace System.Net.Http.Functional.Tests
{
[Collection("MiniStress")]
public sealed class SocketsHttpHandler_HttpClientMiniStress_NoVersion : HttpClientMiniStress
{
public SocketsHttpHandler_HttpClientMiniStress_NoVersion(ITestOutputHelper output) : base(output) { }
Expand All @@ -31,19 +32,22 @@ public void CreateAndDestroyManyClients(int numClients)
}
}

[Collection("MiniStress")]
[ConditionalClass(typeof(QuicConnection), nameof(QuicConnection.IsQuicSupported))]
public sealed class SocketsHttpHandler_HttpClientMiniStress_Http3 : HttpClientMiniStress
{
public SocketsHttpHandler_HttpClientMiniStress_Http3(ITestOutputHelper output) : base(output) { }
protected override Version UseVersion => HttpVersion.Version30;
}

[Collection("MiniStress")]
public sealed class SocketsHttpHandler_HttpClientMiniStress_Http2 : HttpClientMiniStress
{
public SocketsHttpHandler_HttpClientMiniStress_Http2(ITestOutputHelper output) : base(output) { }
protected override Version UseVersion => HttpVersion.Version20;
}

[Collection("MiniStress")]
public sealed class SocketsHttpHandler_HttpClientMiniStress_Http11 : HttpClientMiniStress
{
public SocketsHttpHandler_HttpClientMiniStress_Http11(ITestOutputHelper output) : base(output) { }
Expand Down