From a629725c7a3855672f22949e3e3b646639b7a97a Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Thu, 16 Nov 2017 11:07:16 -0800 Subject: [PATCH] Revert "Disable failing tests (#473)" (#478) --- build/dependencies.props | 46 +++++++++---------- .../HelloWorldTest.cs | 4 +- .../HttpsTest.cs | 8 ++-- .../NtlmAuthentationTest.cs | 4 +- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index c5719a5f51..7acabec02a 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,30 +1,30 @@ - + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 2.1.0-preview1-15550 - 1.0.0-pre-10141 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 0.5.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 - 2.1.0-preview1-27496 + 2.1.0-preview1-15567 + 1.0.0-pre-10202 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 0.5.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 + 2.1.0-preview1-27602 2.0.0 2.6.0-beta2-62211-02 15.3.0 diff --git a/test/IISIntegration.FunctionalTests/HelloWorldTest.cs b/test/IISIntegration.FunctionalTests/HelloWorldTest.cs index 904a6a38d2..82fd0b3be8 100644 --- a/test/IISIntegration.FunctionalTests/HelloWorldTest.cs +++ b/test/IISIntegration.FunctionalTests/HelloWorldTest.cs @@ -20,13 +20,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests { } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] public Task HelloWorld_IISExpress_Clr_X64_Portable() { return HelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable); } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] 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 a3d91b969d..cbc1b137f6 100644 --- a/test/IISIntegration.FunctionalTests/HttpsTest.cs +++ b/test/IISIntegration.FunctionalTests/HttpsTest.cs @@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests { } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] public Task Https_HelloWorld_CLR_X64() { return HttpsHelloWorld(RuntimeFlavor.Clr, ApplicationType.Portable, port: 44396); } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] 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(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] public Task Https_HelloWorld_NoClientCert_CoreCLR_X64_Portable() { return HttpsHelloWorldCerts(RuntimeFlavor.CoreClr, ApplicationType.Portable , port: 44398, sendClientCert: false); } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] 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 d03e71f47e..a19555b9d3 100644 --- a/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs +++ b/test/IISIntegration.FunctionalTests/NtlmAuthentationTest.cs @@ -25,13 +25,13 @@ namespace Microsoft.AspNetCore.Server.IISIntegration.FunctionalTests { } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] public Task NtlmAuthentication_Clr_X64() { return NtlmAuthentication(RuntimeFlavor.Clr, ApplicationType.Portable, port: 5051); } - [Fact(Skip = "https://github.com/aspnet/IISIntegration/issues/472")] + [Fact] public Task NtlmAuthentication_CoreClr_X64_Portable() { return NtlmAuthentication(RuntimeFlavor.CoreClr, ApplicationType.Portable, port: 5052);