Disables tests (#499)
This commit is contained in:
parent
b70191fb82
commit
407f55841b
|
|
@ -20,13 +20,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task HelloWorld_IISExpress_Clr_X64_Portable()
|
public Task HelloWorld_IISExpress_Clr_X64_Portable()
|
||||||
{
|
{
|
||||||
return HelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable);
|
return HelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task HelloWorld_IISExpress_CoreClr_X64_Portable()
|
public Task HelloWorld_IISExpress_CoreClr_X64_Portable()
|
||||||
{
|
{
|
||||||
return HelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable);
|
return HelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable);
|
||||||
|
|
|
||||||
|
|
@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task Https_HelloWorld_CLR_X64()
|
public Task Https_HelloWorld_CLR_X64()
|
||||||
{
|
{
|
||||||
return HttpsHelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44396);
|
return HttpsHelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44396);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task Https_HelloWorld_CoreCLR_X64_Portable()
|
public Task Https_HelloWorld_CoreCLR_X64_Portable()
|
||||||
{
|
{
|
||||||
return HttpsHelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 44394);
|
return HttpsHelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 44394);
|
||||||
|
|
@ -93,13 +93,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task Https_HelloWorld_NoClientCert_CoreCLR_X64_Portable()
|
public Task Https_HelloWorld_NoClientCert_CoreCLR_X64_Portable()
|
||||||
{
|
{
|
||||||
return HttpsHelloWorldCerts(RuntimeFlavor.CoreClr, ApplicationType.Portable , port: 44397, sendClientCert: false);
|
return HttpsHelloWorldCerts(RuntimeFlavor.CoreClr, ApplicationType.Portable , port: 44397, sendClientCert: false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task Https_HelloWorld_NoClientCert_Clr_X64()
|
public Task Https_HelloWorld_NoClientCert_Clr_X64()
|
||||||
{
|
{
|
||||||
return HttpsHelloWorldCerts(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44398, sendClientCert: false);
|
return HttpsHelloWorldCerts(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44398, sendClientCert: false);
|
||||||
|
|
|
||||||
|
|
@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task NtlmAuthentication_Clr_X64()
|
public Task NtlmAuthentication_Clr_X64()
|
||||||
{
|
{
|
||||||
return NtlmAuthentication(RuntimeFlavor.Clr, ApplicationType.Portable, port: 5051);
|
return NtlmAuthentication(RuntimeFlavor.Clr, ApplicationType.Portable, port: 5051);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")]
|
||||||
public Task NtlmAuthentication_CoreClr_X64_Portable()
|
public Task NtlmAuthentication_CoreClr_X64_Portable()
|
||||||
{
|
{
|
||||||
return NtlmAuthentication(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 5052);
|
return NtlmAuthentication(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 5052);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue