Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding issue #77889 to GenerateRuntimeGraphTests. #77890

Merged
merged 1 commit into from
Nov 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ private static ITaskItem CreateItem(ProjectItem projectItem)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanCreateRuntimeGraph()
{
// will generate and compare to existing file.
Expand All @@ -80,6 +81,7 @@ public void CanCreateRuntimeGraph()


[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanIgnoreExistingInferRids()
{
// will generate and compare to existing file.
Expand Down Expand Up @@ -134,6 +136,7 @@ private void AssertRuntimeGraphAdditions(string[] additionalRIDs, RuntimeDescrip
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddVersionsToExistingGroups()
{
var additionalRIDs = new[] { "ubuntu.22.04-arm64" };
Expand All @@ -150,6 +153,7 @@ public void CanAddVersionsToExistingGroups()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddParentVersionsToExistingGroups()
{
var additionalRIDs = new[] { "centos.9.2-arm64" };
Expand All @@ -169,6 +173,7 @@ public void CanAddParentVersionsToExistingGroups()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddMajorVersionsToExistingGroups()
{

Expand All @@ -184,8 +189,9 @@ public void CanAddMajorVersionsToExistingGroups()

AssertRuntimeGraphAdditions(additionalRIDs, expectedAdditions);
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddArchitectureToExistingGroups()
{
var additionalRIDs = new[] { "win10-x128" };
Expand All @@ -208,6 +214,7 @@ public void CanAddArchitectureToExistingGroups()


[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddArchitectureAndVersionToExistingGroups()
{
var additionalRIDs = new[] { "osx.13-powerpc" };
Expand Down Expand Up @@ -235,6 +242,7 @@ public void CanAddArchitectureAndVersionToExistingGroups()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void CanAddNewGroups()
{
var additionalRIDs = new[] { "yolinux.42.0-quantum" };
Expand Down