Skip native cpp compilation on Windows
This commit is contained in:
parent
8db6b797d2
commit
daae6938c4
1 changed files with 6 additions and 0 deletions
|
@ -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}");
|
||||
|
|
Loading…
Reference in a new issue