Disabling the VB tests in non-windows platforms while MSBuild fixes a bug that we need for cross-plat.
This commit is contained in:
parent
38fc8875f2
commit
a4c3e69c3c
1 changed files with 6 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue