Skip to content

Commit

Permalink
[tests] Ignore a few tests that fail on tvOS Simulator/arm64. (#21451)
Browse files Browse the repository at this point in the history
Ref: #19781
  • Loading branch information
rolfbjarne authored Oct 16, 2024
1 parent 0674deb commit d3782b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/monotouch-test/ObjCRuntime/RegistrarTestGenerated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public partial class RegistrarTestGenerated {
void AssertIfIgnored ([CallerMemberName] string testCase = null)
{
switch (testCase) {
#if __MACCATALYST__ || __IOS__
#if __MACCATALYST__ || __IOS__ || __TVOS__
case "NSNumberBindAs_Boolean_Array_Overrides":
case "NSNumberBindAs_Byte_Array_Overrides":
case "NSNumberBindAs_Double_Array_Overrides":
Expand All @@ -27,7 +27,7 @@ void AssertIfIgnored ([CallerMemberName] string testCase = null)
// https://github.com/xamarin/xamarin-macios/issues/19781
#if __MACCATALYST__
if (Runtime.IsARM64CallingConvention)
#elif __IOS__
#elif __IOS__ || __TVOS__
if (Runtime.IsARM64CallingConvention && Runtime.Arch == Arch.SIMULATOR)
#endif
Assert.Ignore ("https://github.com/xamarin/xamarin-macios/issues/19781");
Expand Down

5 comments on commit d3782b4

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.