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]
|
[Fact]
|
||||||
public void TestDotnetCompileNativeCpp()
|
public void TestDotnetCompileNativeCpp()
|
||||||
{
|
{
|
||||||
|
// Skip this test on windows
|
||||||
|
if(SkipForOS(OSPlatform.Windows, "https://github.com/dotnet/cli/issues/335"))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
TestSetup();
|
TestSetup();
|
||||||
|
|
||||||
TestRunCommand("dotnet", $"compile --native --cpp -o {OutputDirectory}");
|
TestRunCommand("dotnet", $"compile --native --cpp -o {OutputDirectory}");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue