Disabling the VB tests in non-windows platforms while MSBuild fixes a bug that we need for cross-plat.

This commit is contained in:
Livar Cunha 2017-05-18 10:09:36 -07:00
parent 38fc8875f2
commit a4c3e69c3c

View file

@ -26,7 +26,8 @@ namespace Microsoft.DotNet.Tests
.Should().Pass();
}
[Fact]
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
[WindowsOnlyFact]
public void ICanBuildVBApps()
{
new BuildCommand()
@ -35,7 +36,8 @@ namespace Microsoft.DotNet.Tests
.Should().Pass();
}
[Fact]
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
[WindowsOnlyFact]
public void ICanRunVBApps()
{
new RunCommand()
@ -44,7 +46,8 @@ namespace Microsoft.DotNet.Tests
.Should().Pass();
}
[Fact]
// Enable cross-plat once https://github.com/Microsoft/msbuild/issues/422 is fixed
[WindowsOnlyFact]
public void ICanPublicAndRunVBApps()
{
new PublishCommand()