|
|
@@ -141,7 +141,7 @@ namespace Microsoft.AspNetCore.Http.Tests
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- [Fact]
|
|
|
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/4621")]
|
|
|
public async Task CancelPendingFlushBetweenWritesAllDataIsPreserved()
|
|
|
{
|
|
|
MemoryStream = new SingleWriteStream();
|
|
|
@@ -214,7 +214,7 @@ namespace Microsoft.AspNetCore.Http.Tests
|
|
|
Assert.True(flushResult.IsCanceled);
|
|
|
}
|
|
|
|
|
|
- [Fact]
|
|
|
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/4621")]
|
|
|
public async Task CancelPendingFlushLostOfCancellationsNoDataLost()
|
|
|
{
|
|
|
var writeSize = 16;
|
|
|
@@ -228,7 +228,6 @@ namespace Microsoft.AspNetCore.Http.Tests
|
|
|
var expectedData = Encoding.ASCII.GetBytes(new string('a', writeSize));
|
|
|
|
|
|
var tcs = new TaskCompletionSource<int>(TaskCreationOptions.RunContinuationsAsynchronously);
|
|
|
- // TaskCreationOptions.RunAsync
|
|
|
|
|
|
var task = Task.Run(async () =>
|
|
|
{
|