Skip to content

Commit 7691231

Browse files
committed
[tests] Ignore tests that publish universal apps.
They're broken due to dotnet/runtime#90584.
1 parent 432f421 commit 7691231

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/dotnet/UnitTests/PostBuildTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ public void BuildPackageTest (string project, ApplePlatform platform, string run
116116
[TestCase (ApplePlatform.iOS, "ios-arm64;ios-arm")]
117117
[TestCase (ApplePlatform.TVOS, "tvos-arm64")]
118118
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
119-
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64")]
119+
// [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64")] // Ignored due to https://github.com/dotnet/runtime/issues/90584
120120
[TestCase (ApplePlatform.MacOSX, "osx-x64")]
121-
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64")]
121+
// [TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64")] // Ignored due to https://github.com/dotnet/runtime/issues/90584
122122
public void PublishTest (ApplePlatform platform, string runtimeIdentifiers)
123123
{
124124
var project = "MySimpleApp";

0 commit comments

Comments
 (0)