Skip to content

Commit 794f1af

Browse files
authored
Adding issue #77889 to GenerateRuntimeGraphTests. (#77890)
1 parent 664a262 commit 794f1af

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/libraries/Microsoft.NETCore.Platforms/tests/GenerateRuntimeGraphTests.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ private static ITaskItem CreateItem(ProjectItem projectItem)
6363
}
6464

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

8182

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

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

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

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

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

185190
AssertRuntimeGraphAdditions(additionalRIDs, expectedAdditions);
186191
}
187-
192+
188193
[Fact]
194+
[ActiveIssue("https://github.com/dotnet/runtime/issues/77889", TestPlatforms.iOS | TestPlatforms.tvOS)]
189195
public void CanAddArchitectureToExistingGroups()
190196
{
191197
var additionalRIDs = new[] { "win10-x128" };
@@ -208,6 +214,7 @@ public void CanAddArchitectureToExistingGroups()
208214

209215

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

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

0 commit comments

Comments
 (0)