Disable cli tool tests on linux-x64 that require netcoreapp1.1.
This commit is contained in:
parent
bd58bcf03b
commit
5194735e27
2 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd
|
||||||
.And.HaveStdOutContaining("Hello I prefer the cli runtime World!");;
|
.And.HaveStdOutContaining("Hello I prefer the cli runtime World!");;
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[RequiresSpecificFrameworkFact("netcoreapp1.1")] // https://github.com/dotnet/cli/issues/6087
|
||||||
public void ItCanRunAToolThatInvokesADependencyToolInACSProj()
|
public void ItCanRunAToolThatInvokesADependencyToolInACSProj()
|
||||||
{
|
{
|
||||||
var repoDirectoriesProvider = new RepoDirectoriesProvider();
|
var repoDirectoriesProvider = new RepoDirectoriesProvider();
|
||||||
|
|
|
@ -112,7 +112,7 @@ namespace Microsoft.DotNet.Tests
|
||||||
.And.Pass();
|
.And.Pass();
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[RequiresSpecificFrameworkFact("netcoreapp1.1")] // https://github.com/dotnet/cli/issues/6087
|
||||||
public void CanInvokeToolFromDirectDependenciesIfPackageNameDifferentFromToolName()
|
public void CanInvokeToolFromDirectDependenciesIfPackageNameDifferentFromToolName()
|
||||||
{
|
{
|
||||||
var testInstance = TestAssets.Get("AppWithDirectDepWithOutputName")
|
var testInstance = TestAssets.Get("AppWithDirectDepWithOutputName")
|
||||||
|
@ -242,7 +242,7 @@ namespace Microsoft.DotNet.Tests
|
||||||
.Should().Fail();
|
.Should().Fail();
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[RequiresSpecificFrameworkFact("netcoreapp1.1")] // https://github.com/dotnet/cli/issues/6087
|
||||||
public void ToolsCanAccessDependencyContextProperly()
|
public void ToolsCanAccessDependencyContextProperly()
|
||||||
{
|
{
|
||||||
var testInstance = TestAssets.Get("DependencyContextFromTool")
|
var testInstance = TestAssets.Get("DependencyContextFromTool")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue