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:
parent
ebf642457d
commit
3e2c090d7c
|
|
@ -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>();
|
||||
|
|
|
|||
Loading…
Reference in New Issue