Skip to content
This repository was archived by the owner on Mar 19, 2019. It is now read-only.

Commit 8a69f5a

Browse files
committed
Skip flaky tests
1 parent f25b212 commit 8a69f5a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/ServerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void Server_AppException_ClientReset()
129129
}
130130
}
131131

132-
[Fact]
132+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
133133
public void Server_MultipleOutstandingSyncRequests_Success()
134134
{
135135
int requestLimit = 10;

test/Microsoft.Net.Http.Server.FunctionalTests/ResponseBodyTests.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public async Task ResponseBody_WriteContentLengthNotEnoughWritten_Aborts()
155155
}
156156
}
157157

158-
[Fact]
158+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
159159
public async Task ResponseBody_WriteContentLengthTooMuchWritten_Throws()
160160
{
161161
string address;
@@ -265,7 +265,7 @@ public async Task ResponseBody_WriteAsyncWithTimerCancellationToken_Success()
265265
}
266266
}
267267

268-
[Fact]
268+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
269269
public async Task ResponseBodyWriteExceptions_FirstWriteAsyncWithCanceledCancellationToken_CancelsAndAborts()
270270
{
271271
string address;
@@ -324,7 +324,7 @@ public async Task ResponseBody_FirstWriteAsyncWithCanceledCancellationToken_Canc
324324
}
325325
}
326326

327-
[Fact]
327+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
328328
public async Task ResponseBodyWriteExceptions_SecondWriteAsyncWithCanceledCancellationToken_CancelsAndAborts()
329329
{
330330
string address;
@@ -346,7 +346,7 @@ public async Task ResponseBodyWriteExceptions_SecondWriteAsyncWithCanceledCancel
346346
}
347347
}
348348

349-
[Fact]
349+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
350350
public async Task ResponseBody_SecondWriteAsyncWithCanceledCancellationToken_CancelsAndAborts()
351351
{
352352
string address;
@@ -475,7 +475,7 @@ public async Task ResponseBody_ClientDisconnectsBeforeFirstWriteAsync_WriteCompl
475475
}
476476
}
477477

478-
[Fact]
478+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
479479
public async Task ResponseBodyWriteExceptions_ClientDisconnectsBeforeSecondWrite_WriteThrows()
480480
{
481481
string address;
@@ -509,7 +509,7 @@ public async Task ResponseBodyWriteExceptions_ClientDisconnectsBeforeSecondWrite
509509
}
510510
}
511511

512-
[Fact]
512+
[Fact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
513513
public async Task ResponseBodyWriteExceptions_ClientDisconnectsBeforeSecondWriteAsync_WriteThrows()
514514
{
515515
string address;
@@ -592,7 +592,7 @@ public async Task ResponseBody_ClientDisconnectsBeforeSecondWriteAsync_WriteComp
592592
response.EnsureSuccessStatusCode();
593593
response.Dispose();
594594
}
595-
595+
596596
Assert.True(context.DisconnectToken.WaitHandle.WaitOne(TimeSpan.FromSeconds(5)));
597597
// It can take several tries before Write notices the disconnect.
598598
for (int i = 0; i < 10; i++)

0 commit comments

Comments
 (0)