From 223724c13ea986fbd64b4fbb716effdfaaf9eb34 Mon Sep 17 00:00:00 2001 From: Troy Dai Date: Fri, 24 Apr 2015 13:32:46 -0700 Subject: [PATCH] React to OperationSystems option change --- test/E2ETests/NtlmAuthentationTest.cs | 4 ++-- test/E2ETests/SmokeTests.cs | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/E2ETests/NtlmAuthentationTest.cs b/test/E2ETests/NtlmAuthentationTest.cs index 4e46f6dfb6..92f7faedd8 100644 --- a/test/E2ETests/NtlmAuthentationTest.cs +++ b/test/E2ETests/NtlmAuthentationTest.cs @@ -14,7 +14,7 @@ namespace E2ETests public class NtlmAuthenticationTests { [ConditionalTheory, Trait("E2Etests", "E2Etests")] - [OSSkipCondition(OperatingSystems.Unix | OperatingSystems.MacOSX)] + [OSSkipCondition(OperatingSystems.Linux | OperatingSystems.MacOSX)] [InlineData(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x86, "http://localhost:5050/")] [InlineData(ServerType.IISExpress, RuntimeFlavor.Clr, RuntimeArchitecture.x64, "http://localhost:5051/")] [InlineData(ServerType.WebListener, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5052/")] @@ -74,4 +74,4 @@ namespace E2ETests } } } -} \ No newline at end of file +} diff --git a/test/E2ETests/SmokeTests.cs b/test/E2ETests/SmokeTests.cs index fc3fca9b22..153c41e67b 100644 --- a/test/E2ETests/SmokeTests.cs +++ b/test/E2ETests/SmokeTests.cs @@ -70,7 +70,7 @@ namespace E2ETests [ConditionalTheory, Trait("E2Etests", "E2Etests")] [SkipIfIISNativeVariationsNotEnabled] [FrameworkSkipCondition(RuntimeFrameworks.Mono)] - [OSSkipCondition(OperatingSystems.Win7And2008R2 | OperatingSystems.MacOSX | OperatingSystems.Unix)] + [OSSkipCondition(OperatingSystems.Win7And2008R2 | OperatingSystems.MacOSX | OperatingSystems.Linux)] [SkipIfCurrentRuntimeIsCoreClr] [InlineData(ServerType.IISNativeModule, RuntimeFlavor.CoreClr, RuntimeArchitecture.x86, "http://localhost:5011/")] public async Task SmokeTestSuite_On_NativeModule_X86(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl) @@ -82,7 +82,7 @@ namespace E2ETests [ConditionalTheory, Trait("E2Etests", "E2Etests")] [SkipIfIISNativeVariationsNotEnabled] [FrameworkSkipCondition(RuntimeFrameworks.Mono)] - [OSSkipCondition(OperatingSystems.Win7And2008R2 | OperatingSystems.MacOSX | OperatingSystems.Unix)] + [OSSkipCondition(OperatingSystems.Win7And2008R2 | OperatingSystems.MacOSX | OperatingSystems.Linux)] [SkipOn32BitOS] [SkipIfCurrentRuntimeIsCoreClr] [InlineData(ServerType.IISNativeModule, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5012/")] @@ -97,7 +97,7 @@ namespace E2ETests { [ConditionalTheory, Trait("E2Etests", "E2Etests")] [FrameworkSkipCondition(RuntimeFrameworks.Mono)] - [OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Unix)] + [OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux)] [SkipIfCurrentRuntimeIsCoreClr] [SkipIfIISVariationsNotEnabled] [InlineData(ServerType.IIS, RuntimeFlavor.Clr, RuntimeArchitecture.x86, "http://localhost:5013/")] @@ -253,4 +253,4 @@ namespace E2ETests } } } -} \ No newline at end of file +}