From 407f55841b75df92e46e7c42c835a182a2edab88 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Fri, 29 Dec 2017 18:05:17 -0800 Subject: [PATCH] Disables tests (#499) --- test/IISIntegration.FunctionalTests/HelloWorldTest.cs | 4 ++-- test/IISIntegration.FunctionalTests/HttpsTest.cs | 8 ++++---- .../NtlmAuthentationTest.cs | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/IISIntegration.FunctionalTests/HelloWorldTest.cs b/test/IISIntegration.FunctionalTests/HelloWorldTest.cs index e11475cd89..0a27bb285f 100644 --- a/test/IISIntegration.FunctionalTests/HelloWorldTest.cs +++ b/test/IISIntegration.FunctionalTests/HelloWorldTest.cs @@ -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() { return HelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable); } - [Fact] + [Fact(Skip = "See https://github.com/aspnet/IISIntegration/issues/498")] public Task HelloWorld_IISExpress_CoreClr_X64_Portable() { return HelloWorld(RuntimeFlavor.CoreClr, ApplicationType.Portable); diff --git a/test/IISIntegration.FunctionalTests/HttpsTest.cs b/test/IISIntegration.FunctionalTests/HttpsTest.cs index 804426f01c..d0e866c02c 100644 --- a/test/IISIntegration.FunctionalTests/HttpsTest.cs +++ b/test/IISIntegration.FunctionalTests/HttpsTest.cs @@ -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() { 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() { 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() { 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() { return HttpsHelloWorldCerts(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44398, sendClientCert: false); diff --git a/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs b/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs index dd081ac4ec..f5f8fd7aa1 100644 --- a/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs +++ b/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs @@ -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() { 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() { return NtlmAuthentication(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 5052);