Skip to content

Commit

Permalink
[introspection] Ignore a few protocol conformances for ScreenCaptureK…
Browse files Browse the repository at this point in the history
…it types. (#21829)

These show up / fail on macOS 15.2+.
  • Loading branch information
rolfbjarne authored Dec 20, 2024
1 parent 874ee22 commit b16e40b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/introspection/ApiProtocolTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ protected virtual bool Skip (Type type, string protocolName)
case "ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput":
case "ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput":
case "ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput":
case "SCContentFilter":
case "SCDisplay":
case "SCRunningApplication":
case "SCWindow":
case "SCStreamConfiguration":
return true;
}
break;
Expand Down Expand Up @@ -426,6 +431,11 @@ protected virtual bool Skip (Type type, string protocolName)
case "UIHoverGestureRecognizer":
// Xcode 16.2 Conformance not in headers
case "SCSensitivityAnalysis":
case "SCContentFilter":
case "SCDisplay":
case "SCRunningApplication":
case "SCWindow":
case "SCStreamConfiguration":
return true;
}
break;
Expand Down Expand Up @@ -645,6 +655,11 @@ protected virtual bool Skip (Type type, string protocolName)
return true;
// Xcode 16.2 Conformance not in headers
case "SCSensitivityAnalysis":
case "SCContentFilter":
case "SCDisplay":
case "SCRunningApplication":
case "SCWindow":
case "SCStreamConfiguration":
return true;
}
break;
Expand Down

10 comments on commit b16e40b

@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.

@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.