Skip to content

Commit

Permalink
[tests] Ignore tests that publish universal apps.
Browse files Browse the repository at this point in the history
They're broken due to dotnet/runtime#90584.
  • Loading branch information
rolfbjarne committed Aug 15, 2023
1 parent 432f421 commit 7691231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/dotnet/UnitTests/PostBuildTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ public void BuildPackageTest (string project, ApplePlatform platform, string run
[TestCase (ApplePlatform.iOS, "ios-arm64;ios-arm")]
[TestCase (ApplePlatform.TVOS, "tvos-arm64")]
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64")]
// [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64;maccatalyst-x64")] // Ignored due to https://github.com/dotnet/runtime/issues/90584
[TestCase (ApplePlatform.MacOSX, "osx-x64")]
[TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64")]
// [TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64")] // Ignored due to https://github.com/dotnet/runtime/issues/90584
public void PublishTest (ApplePlatform platform, string runtimeIdentifiers)
{
var project = "MySimpleApp";
Expand Down

0 comments on commit 7691231

Please sign in to comment.