Skip flaky tests

This commit is contained in:
Ryan Brandenburg 2018-04-06 15:14:21 -07:00
parent b030ab7e49
commit 7e5104573e
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
await RegisterIPEndPoint_Success(endpoint, testUrl, 443);
}
[ConditionalTheory]
[ConditionalTheory(Skip="https://github.com/aspnet/KestrelHttpServer/issues/2434")]
[MemberData(nameof(AddressRegistrationDataIPv6))]
[IPv6SupportedCondition]
public async Task RegisterAddresses_IPv6_Success(string addressInput, string[] testUrls)

View File

@ -119,7 +119,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
&& ((BadHttpRequestException)w.Exception).StatusCode == StatusCodes.Status408RequestTimeout);
}
[Fact]
[Fact(Skip="https://github.com/aspnet/KestrelHttpServer/issues/2464")]
public async Task ConnectionClosedEvenIfAppSwallowsException()
{
var gracePeriod = TimeSpan.FromSeconds(5);