Skip more tests on Mono to prevent hangs

- It seems like I missed some FrameworkSkipConditions when I merged these tests
This commit is contained in:
Stephen Halter 2015-12-09 15:48:04 -08:00
parent ebf642457d
commit 3e2c090d7c
1 changed files with 4 additions and 2 deletions

View File

@ -931,8 +931,9 @@ namespace Microsoft.AspNet.Server.KestrelTests
}
}
[Theory]
[ConditionalTheory]
[MemberData(nameof(ConnectionFilterData))]
[FrameworkSkipCondition(RuntimeFrameworks.Mono, SkipReason = "Test hangs after execution on Mono.")]
public async Task RequestsCanBeAbortedMidRead(ServiceContext testContext)
{
var readTcs = new TaskCompletionSource<object>();
@ -1003,8 +1004,9 @@ namespace Microsoft.AspNet.Server.KestrelTests
Assert.Equal(2, abortedRequestId);
}
[Theory]
[ConditionalTheory]
[MemberData(nameof(ConnectionFilterData))]
[FrameworkSkipCondition(RuntimeFrameworks.Mono, SkipReason = "Test hangs after execution on Mono.")]
public async Task FailedWritesResultInAbortedRequest(ServiceContext testContext)
{
var writeTcs = new TaskCompletionSource<object>();