From daae6938c4de47d40ce051365673fe9c1249040c Mon Sep 17 00:00:00 2001 From: Bryan Thornbury Date: Mon, 30 Nov 2015 10:39:25 -0800 Subject: [PATCH] Skip native cpp compilation on Windows --- test/E2E/E2ETest.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/E2E/E2ETest.cs b/test/E2E/E2ETest.cs index 31507cf9b..98c87a25e 100644 --- a/test/E2E/E2ETest.cs +++ b/test/E2E/E2ETest.cs @@ -68,6 +68,12 @@ namespace ConsoleApplication [Fact] public void TestDotnetCompileNativeCpp() { + // Skip this test on windows + if(SkipForOS(OSPlatform.Windows, "https://github.com/dotnet/cli/issues/335")) + { + return; + } + TestSetup(); TestRunCommand("dotnet", $"compile --native --cpp -o {OutputDirectory}");