Skip native cpp compilation on Windows

This commit is contained in:
Bryan Thornbury 2015-11-30 10:39:25 -08:00
parent 8db6b797d2
commit daae6938c4

View file

@ -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}");