Skip to content

Commit c9c2bf6

Browse files
authored
even more skipping! (#8286)
1 parent 0d10c49 commit c9c2bf6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Servers/Kestrel/test/FunctionalTests/MaxRequestBufferSizeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ from ssl in sslValues
112112
private bool LargeUploadRetryPredicate(Exception e)
113113
=> 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");
114114

115-
[Theory]
115+
[Theory(Skip = "https://github.com/aspnet/AspNetCore/issues/8054")]
116116
[RetryTest(nameof(LargeUploadRetryPredicate),
117117
"Active investigation into potential corefx sockets bug: https://github.com/dotnet/corefx/issues/30691",
118118
OperatingSystems.Windows,

src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ public async Task WritingToConnectionAfterUnobservedCloseTriggersRequestAbortedT
258258
var clientClosedConnection = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
259259
var writeTcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
260260

261-
TestSink.MessageLogged += context => {
261+
TestSink.MessageLogged += context =>
262+
{
262263
if (context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" &&
263264
context.LoggerName != "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets")
264265
{
@@ -340,7 +341,7 @@ await connection.Send(
340341
Assert.True(requestAborted.Task.IsCompleted);
341342
}
342343

343-
[Theory]
344+
[Theory(Skip = "https://github.com/aspnet/AspNetCore/issues/7342")]
344345
[MemberData(nameof(ConnectionAdapterData))]
345346
public async Task AppCanHandleClientAbortingConnectionMidResponse(ListenOptions listenOptions)
346347
{

0 commit comments

Comments
 (0)