even more skipping! (#8286)
This commit is contained in:
parent
0d10c49823
commit
c9c2bf6ea5
|
|
@ -112,7 +112,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
private bool LargeUploadRetryPredicate(Exception e)
|
private bool LargeUploadRetryPredicate(Exception e)
|
||||||
=> e is IOException && e.Message.Contains("Unable to read data from the transport connection: The I/O operation has been aborted because of either a thread exit or an application request");
|
=> e is IOException && e.Message.Contains("Unable to read data from the transport connection: The I/O operation has been aborted because of either a thread exit or an application request");
|
||||||
|
|
||||||
[Theory]
|
[Theory(Skip = "https://github.com/aspnet/AspNetCore/issues/8054")]
|
||||||
[RetryTest(nameof(LargeUploadRetryPredicate),
|
[RetryTest(nameof(LargeUploadRetryPredicate),
|
||||||
"Active investigation into potential corefx sockets bug: https://github.com/dotnet/corefx/issues/30691",
|
"Active investigation into potential corefx sockets bug: https://github.com/dotnet/corefx/issues/30691",
|
||||||
OperatingSystems.Windows,
|
OperatingSystems.Windows,
|
||||||
|
|
|
||||||
|
|
@ -258,7 +258,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
var clientClosedConnection = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
var clientClosedConnection = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||||
var writeTcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
var writeTcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||||
|
|
||||||
TestSink.MessageLogged += context => {
|
TestSink.MessageLogged += context =>
|
||||||
|
{
|
||||||
if (context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" &&
|
if (context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" &&
|
||||||
context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets")
|
context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets")
|
||||||
{
|
{
|
||||||
|
|
@ -340,7 +341,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
Assert.True(requestAborted.Task.IsCompleted);
|
Assert.True(requestAborted.Task.IsCompleted);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory(Skip = "https://github.com/aspnet/AspNetCore/issues/7342")]
|
||||||
[MemberData(nameof(ConnectionAdapterData))]
|
[MemberData(nameof(ConnectionAdapterData))]
|
||||||
public async Task AppCanHandleClientAbortingConnectionMidResponse(ListenOptions listenOptions)
|
public async Task AppCanHandleClientAbortingConnectionMidResponse(ListenOptions listenOptions)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue