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

Make SendFile_NonParallel<T> abstract #58003

Merged
merged 1 commit into from
Aug 24, 2021
Merged
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
Make SendFile_NonParallel<T> abstract
  • Loading branch information
antonfirsov committed Aug 24, 2021
commit de19ef7d61d24e35a793e1e72e5fb40690b407b5
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public void EndSendFile_NullAsyncResult_Throws()
// Running all cases of GreaterThan2GBFile_SendsAllBytes in parallel may attempt to allocate Min(ProcessorCount, Subclass_Count) * 2GB of disk space
// in extreme cases. Some CI machines may run out of disk space if this happens.
[Collection(nameof(NoParallelTests))]
public class SendFile_NonParallel<T> : SocketTestHelperBase<T> where T : SocketHelperBase, new()
public abstract class SendFile_NonParallel<T> : SocketTestHelperBase<T> where T : SocketHelperBase, new()
{
protected SendFile_NonParallel(ITestOutputHelper output) : base(output)
{
Expand Down