From 794f1afa15b76cb83eaed9644ecec73275c98080 Mon Sep 17 00:00:00 2001 From: Jan Dupej <109523496+jandupej@users.noreply.github.com> Date: Fri, 4 Nov 2022 16:59:23 +0100 Subject: [PATCH] Adding issue #77889 to GenerateRuntimeGraphTests. (#77890) --- .../tests/GenerateRuntimeGraphTests.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/libraries/Microsoft.NETCore.Platforms/tests/GenerateRuntimeGraphTests.cs b/src/libraries/Microsoft.NETCore.Platforms/tests/GenerateRuntimeGraphTests.cs index 253b507b28e0b..63e83a819bd81 100644 --- a/src/libraries/Microsoft.NETCore.Platforms/tests/GenerateRuntimeGraphTests.cs +++ b/src/libraries/Microsoft.NETCore.Platforms/tests/GenerateRuntimeGraphTests.cs @@ -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. @@ -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. @@ -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" }; @@ -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" }; @@ -169,6 +173,7 @@ public void CanAddParentVersionsToExistingGroups() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)] public void CanAddMajorVersionsToExistingGroups() { @@ -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" }; @@ -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" }; @@ -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" };