Disable failing tests (#473)

This commit is contained in:
Pavel Krymets 2017-11-13 10:56:22 -08:00 committed by GitHub
parent 552163ab77
commit adec0c6fbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -20,13 +20,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
{
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task HelloWorld_IISExpress_Clr_X64_Portable()
{
return HelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable);
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task HelloWorld_IISExpress_CoreClr_X64_Portable()
{
return HelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable);

View File

@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
{
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task Https_HelloWorld_CLR_X64()
{
return HttpsHelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44396);
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task Https_HelloWorld_CoreCLR_X64_Portable()
{
return HttpsHelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 44394);
@ -87,13 +87,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
}
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task Https_HelloWorld_NoClientCert_CoreCLR_X64_Portable()
{
return HttpsHelloWorldCerts(RuntimeFlavor.CoreClr, ApplicationType.Portable , port: 44398, sendClientCert: false);
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task Https_HelloWorld_NoClientCert_Clr_X64()
{
return HttpsHelloWorldCerts(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44398, sendClientCert: false);

View File

@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
{
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task NtlmAuthentication_Clr_X64()
{
return NtlmAuthentication(RuntimeFlavor.Clr, ApplicationType.Portable, port: 5051);
}
[Fact]
[Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")]
public Task NtlmAuthentication_CoreClr_X64_Portable()
{
return NtlmAuthentication(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 5052);