From 45592d24ec8d1c642ba0f31fb8117f3ff7fcaa7f Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Wed, 3 Feb 2021 09:04:16 -0500 Subject: [PATCH 01/10] [xcode12.5] Initial bump for beta 1 This version of Xcode requires macOS 11.0 or later. --- Make.config | 8 +-- Make.versions | 14 ++-- Versions-ios.plist.in | 11 ++++ Versions-mac.plist.in | 2 + tests/common/TestRuntime.cs | 12 ++++ tests/introspection/ApiAvailabilityTest.cs | 2 +- tests/introspection/ApiProtocolTest.cs | 3 + tests/introspection/Mac/MacApiProtocolTest.cs | 11 ++++ .../xtro-sharpie/common-CoreFoundation.ignore | 1 + tests/xtro-sharpie/common-MLCompute.ignore | 6 -- .../common-VideoSubscriberAccount.ignore | 3 - tests/xtro-sharpie/iOS-AVFoundation.todo | 64 +++++++++++++++++++ tests/xtro-sharpie/iOS-AudioToolbox.todo | 1 + tests/xtro-sharpie/iOS-CallKit.todo | 4 ++ tests/xtro-sharpie/iOS-ClassKit.todo | 5 ++ .../iOS-ExposureNotification.todo | 7 ++ tests/xtro-sharpie/iOS-Foundation.todo | 3 + tests/xtro-sharpie/iOS-GameController.todo | 16 +++++ tests/xtro-sharpie/iOS-GameKit.todo | 7 ++ tests/xtro-sharpie/iOS-HomeKit.todo | 1 + tests/xtro-sharpie/iOS-Intents.todo | 14 ++++ tests/xtro-sharpie/iOS-MLCompute.todo | 40 ++++++++++++ tests/xtro-sharpie/iOS-MediaPlayer.todo | 2 + tests/xtro-sharpie/iOS-PassKit.todo | 4 ++ tests/xtro-sharpie/iOS-Speech.todo | 7 ++ tests/xtro-sharpie/iOS-StoreKit.todo | 25 ++++++++ tests/xtro-sharpie/iOS-UIKit.todo | 50 +++++++++++++++ tests/xtro-sharpie/iOS-VideoToolbox.todo | 2 + tests/xtro-sharpie/iOS-WebKit.todo | 23 +++++++ tests/xtro-sharpie/macOS-AVFoundation.todo | 60 +++++++++++++++++ tests/xtro-sharpie/macOS-AudioToolbox.todo | 1 + tests/xtro-sharpie/macOS-CallKit.todo | 1 + tests/xtro-sharpie/macOS-ClassKit.todo | 5 ++ tests/xtro-sharpie/macOS-DeviceCheck.todo | 6 ++ tests/xtro-sharpie/macOS-FileProvider.ignore | 1 - tests/xtro-sharpie/macOS-FileProvider.todo | 30 +++++++++ tests/xtro-sharpie/macOS-Foundation.todo | 3 + tests/xtro-sharpie/macOS-GameController.todo | 16 +++++ tests/xtro-sharpie/macOS-GameKit.todo | 7 ++ tests/xtro-sharpie/macOS-Intents.todo | 4 ++ tests/xtro-sharpie/macOS-MLCompute.todo | 40 ++++++++++++ tests/xtro-sharpie/macOS-MediaPlayer.todo | 1 + .../macOS-MetalPerformanceShadersGraph.todo | 7 ++ tests/xtro-sharpie/macOS-PassKit.todo | 4 ++ tests/xtro-sharpie/macOS-Speech.todo | 7 ++ tests/xtro-sharpie/macOS-VideoToolbox.todo | 2 + tests/xtro-sharpie/macOS-WebKit.todo | 23 +++++++ tests/xtro-sharpie/tvOS-AVFoundation.todo | 62 ++++++++++++++++++ tests/xtro-sharpie/tvOS-AudioToolbox.todo | 1 + tests/xtro-sharpie/tvOS-Foundation.todo | 3 + tests/xtro-sharpie/tvOS-GameController.todo | 16 +++++ tests/xtro-sharpie/tvOS-GameKit.todo | 7 ++ tests/xtro-sharpie/tvOS-HomeKit.todo | 1 + tests/xtro-sharpie/tvOS-Intents.todo | 1 + tests/xtro-sharpie/tvOS-MLCompute.todo | 40 ++++++++++++ tests/xtro-sharpie/tvOS-MediaPlayer.todo | 2 + tests/xtro-sharpie/tvOS-UIKit.todo | 6 ++ tests/xtro-sharpie/tvOS-VideoToolbox.todo | 2 + tests/xtro-sharpie/watchOS-AVFoundation.todo | 61 ++++++++++++++++++ tests/xtro-sharpie/watchOS-Foundation.todo | 3 + tests/xtro-sharpie/watchOS-GameKit.todo | 7 ++ tests/xtro-sharpie/watchOS-HomeKit.todo | 1 + tests/xtro-sharpie/watchOS-Intents.todo | 14 ++++ tests/xtro-sharpie/watchOS-MediaPlayer.todo | 1 + tests/xtro-sharpie/watchOS-PassKit.todo | 2 + .../automation/templates/build/stage.yml | 5 +- 66 files changed, 777 insertions(+), 24 deletions(-) delete mode 100644 tests/xtro-sharpie/common-VideoSubscriberAccount.ignore create mode 100644 tests/xtro-sharpie/iOS-AVFoundation.todo create mode 100644 tests/xtro-sharpie/iOS-AudioToolbox.todo create mode 100644 tests/xtro-sharpie/iOS-CallKit.todo create mode 100644 tests/xtro-sharpie/iOS-ClassKit.todo create mode 100644 tests/xtro-sharpie/iOS-ExposureNotification.todo create mode 100644 tests/xtro-sharpie/iOS-GameController.todo create mode 100644 tests/xtro-sharpie/iOS-GameKit.todo create mode 100644 tests/xtro-sharpie/iOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/iOS-Intents.todo create mode 100644 tests/xtro-sharpie/iOS-MLCompute.todo create mode 100644 tests/xtro-sharpie/iOS-MediaPlayer.todo create mode 100644 tests/xtro-sharpie/iOS-PassKit.todo create mode 100644 tests/xtro-sharpie/iOS-Speech.todo create mode 100644 tests/xtro-sharpie/iOS-StoreKit.todo create mode 100644 tests/xtro-sharpie/iOS-VideoToolbox.todo create mode 100644 tests/xtro-sharpie/iOS-WebKit.todo create mode 100644 tests/xtro-sharpie/macOS-AVFoundation.todo create mode 100644 tests/xtro-sharpie/macOS-AudioToolbox.todo create mode 100644 tests/xtro-sharpie/macOS-CallKit.todo create mode 100644 tests/xtro-sharpie/macOS-ClassKit.todo create mode 100644 tests/xtro-sharpie/macOS-DeviceCheck.todo create mode 100644 tests/xtro-sharpie/macOS-FileProvider.todo create mode 100644 tests/xtro-sharpie/macOS-GameController.todo create mode 100644 tests/xtro-sharpie/macOS-GameKit.todo create mode 100644 tests/xtro-sharpie/macOS-Intents.todo create mode 100644 tests/xtro-sharpie/macOS-MLCompute.todo create mode 100644 tests/xtro-sharpie/macOS-MediaPlayer.todo create mode 100644 tests/xtro-sharpie/macOS-PassKit.todo create mode 100644 tests/xtro-sharpie/macOS-Speech.todo create mode 100644 tests/xtro-sharpie/macOS-VideoToolbox.todo create mode 100644 tests/xtro-sharpie/macOS-WebKit.todo create mode 100644 tests/xtro-sharpie/tvOS-AVFoundation.todo create mode 100644 tests/xtro-sharpie/tvOS-AudioToolbox.todo create mode 100644 tests/xtro-sharpie/tvOS-GameController.todo create mode 100644 tests/xtro-sharpie/tvOS-GameKit.todo create mode 100644 tests/xtro-sharpie/tvOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/tvOS-Intents.todo create mode 100644 tests/xtro-sharpie/tvOS-MLCompute.todo create mode 100644 tests/xtro-sharpie/tvOS-MediaPlayer.todo create mode 100644 tests/xtro-sharpie/tvOS-VideoToolbox.todo create mode 100644 tests/xtro-sharpie/watchOS-AVFoundation.todo create mode 100644 tests/xtro-sharpie/watchOS-GameKit.todo create mode 100644 tests/xtro-sharpie/watchOS-HomeKit.todo create mode 100644 tests/xtro-sharpie/watchOS-Intents.todo create mode 100644 tests/xtro-sharpie/watchOS-MediaPlayer.todo create mode 100644 tests/xtro-sharpie/watchOS-PassKit.todo diff --git a/Make.config b/Make.config index be1077afb6f3..214ec5be1f25 100644 --- a/Make.config +++ b/Make.config @@ -119,9 +119,9 @@ MACCATALYST_NUGET_VERSION_NO_METADATA=$(MACCATALYST_NUGET_VERSION)-$(NUGET_PRERE MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_BUILD_METADATA) # Xcode version should have both a major and a minor version (even if the minor version is 0) -XCODE_VERSION=12.3 -XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_12.3.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_12.3.0.app/Contents/Developer +XCODE_VERSION=12.5 +XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_12.5_beta.xip +XCODE_DEVELOPER_ROOT=/Applications/Xcode_12.5.0-beta1.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist) # Mono version embedded in XI/XM (NEEDED_MONO_VERSION/BRANCH) are specified in mk/mono.mk @@ -152,7 +152,7 @@ MAX_SHARPIE_VERSION=3.5.99 MIN_SHARPIE_URL=https://download.visualstudio.microsoft.com/download/pr/83e81fcc-39cd-4c2d-b906-ea635f424aaa/2cd8d79588fbb61fa0f4594c85cccfe6/objectivesharpie-3.5.38.pkg # Minimum OSX versions for building XI/XM -MIN_OSX_BUILD_VERSION=10.15.4 +MIN_OSX_BUILD_VERSION=11.0 # Minimum OSX version for executing XI/XM tooling. MIN_OSX_VERSION_FOR_IOS=10.11 MIN_OSX_VERSION_FOR_MAC=10.11 diff --git a/Make.versions b/Make.versions index 645fcb22a77f..5cee5ec14632 100644 --- a/Make.versions +++ b/Make.versions @@ -48,8 +48,8 @@ # line changed in git). # -IOS_PACKAGE_VERSION=14.14.1.$(IOS_COMMIT_DISTANCE) -MAC_PACKAGE_VERSION=7.8.1.$(MAC_COMMIT_DISTANCE) +IOS_PACKAGE_VERSION=14.15.0.$(IOS_COMMIT_DISTANCE) +MAC_PACKAGE_VERSION=7.9.0.$(MAC_COMMIT_DISTANCE) # # ** NuGet package version numbers ** @@ -66,8 +66,8 @@ MAC_PACKAGE_VERSION=7.8.1.$(MAC_COMMIT_DISTANCE) # WARNING: Do **not** use versions higher than the available Xcode SDK or else we will have issues with mtouch (See https://github.com/xamarin/xamarin-macios/issues/7705) # When bumping the major macOS version in MACOS_NUGET_VERSION also update the macOS version where we execute on bots in jenkins/Jenkinsfile (in the 'node' element) -IOS_NUGET_VERSION=14.3.100 -TVOS_NUGET_VERSION=14.3.100 -WATCHOS_NUGET_VERSION=7.2.100 -MACOS_NUGET_VERSION=11.1.100 -MACCATALYST_NUGET_VERSION=14.3.100 +IOS_NUGET_VERSION=14.5.100 +TVOS_NUGET_VERSION=14.5.100 +WATCHOS_NUGET_VERSION=7.4.100 +MACOS_NUGET_VERSION=11.3.100 +MACCATALYST_NUGET_VERSION=14.5.100 diff --git a/Versions-ios.plist.in b/Versions-ios.plist.in index eaf21a0fe033..bfb0141ae435 100644 --- a/Versions-ios.plist.in +++ b/Versions-ios.plist.in @@ -44,6 +44,8 @@ 14.1 14.2 14.3 + 14.4 + 14.5 tvOS @@ -70,6 +72,8 @@ 14.0 14.2 14.3 + 14.4 + 14.5 watchOS @@ -93,6 +97,8 @@ 7.0 7.1 7.2 + 7.3 + 7.4 MacCatalyst @@ -103,6 +109,7 @@ 13.5 14.2 14.3 + 14.5 MacCatalystVersionMap @@ -121,6 +128,10 @@ 11.0 14.3 11.1 + 14.4 + 11.2 + 14.5 + 11.3 RecommendedXcodeVersion @XCODE_VERSION@ diff --git a/Versions-mac.plist.in b/Versions-mac.plist.in index a038e19320d6..ab0e8e62b0c3 100644 --- a/Versions-mac.plist.in +++ b/Versions-mac.plist.in @@ -20,6 +20,8 @@ 10.16 11.0 11.1 + 11.2 + 11.3 RecommendedXcodeVersion diff --git a/tests/common/TestRuntime.cs b/tests/common/TestRuntime.cs index 0e615e94e090..8ee04b67fea0 100644 --- a/tests/common/TestRuntime.cs +++ b/tests/common/TestRuntime.cs @@ -294,6 +294,18 @@ public static bool CheckXcodeVersion (int major, int minor, int build = 0) return CheckMacSystemVersion (11, 0, 0); #else throw new NotImplementedException (); +#endif + case 5: +#if __WATCHOS__ + return CheckWatchOSSystemVersion (7, 4); +#elif __TVOS__ + return ChecktvOSSystemVersion (14, 5); +#elif __IOS__ + return CheckiOSSystemVersion (14, 5); +#elif MONOMAC + return CheckMacSystemVersion (11, 3, 0); +#else + throw new NotImplementedException (); #endif default: throw new NotImplementedException (); diff --git a/tests/introspection/ApiAvailabilityTest.cs b/tests/introspection/ApiAvailabilityTest.cs index 0aba35bfd3a0..1af6f29960e9 100644 --- a/tests/introspection/ApiAvailabilityTest.cs +++ b/tests/introspection/ApiAvailabilityTest.cs @@ -52,7 +52,7 @@ public ApiAvailabilityTest () Minimum = new Version (10,9); // Need to special case macOS 'Maximum' version for OS minor subversions (can't change Constants.SdkVersion) // Please comment the code below if needed - Maximum = new Version (11,1,0); + // Maximum = new Version (11,1,0); #endif Filter = (AvailabilityBaseAttribute arg) => { return (arg.AvailabilityKind != AvailabilityKind.Introduced) || (arg.Platform != Platform); diff --git a/tests/introspection/ApiProtocolTest.cs b/tests/introspection/ApiProtocolTest.cs index ee643e609e21..07c01792b705 100644 --- a/tests/introspection/ApiProtocolTest.cs +++ b/tests/introspection/ApiProtocolTest.cs @@ -116,6 +116,9 @@ protected virtual bool Skip (Type type, string protocolName) case "PKTransitPassProperties": // Conformance not in headers // Xcode 12.2 case "VSAccountApplicationProvider": // Conformance not in headers + // Xcode 12.5 + case "HMCharacteristicMetadata": + case "HMAccessoryCategory": return true; } break; diff --git a/tests/introspection/Mac/MacApiProtocolTest.cs b/tests/introspection/Mac/MacApiProtocolTest.cs index 7c2b456c0a17..9cf91165860c 100644 --- a/tests/introspection/Mac/MacApiProtocolTest.cs +++ b/tests/introspection/Mac/MacApiProtocolTest.cs @@ -85,6 +85,11 @@ protected override bool Skip (Type type, string protocolName) case "NSPrintInfo": // Conformance not in headers case "NSPrinter": // Conformance not in headers return true; + // Xcode 12.5 + case "CXCall": // Conformance not in headers + case "CXCallUpdate": // Conformance not in headers + case "CXProviderConfiguration": // Conformance not in headers + return true; default: // CIFilter started implementing NSSecureCoding in 10.11 if (!Mac.CheckSystemVersion (10, 11) && (type == typeof(CIFilter) || type.IsSubclassOf (typeof(CIFilter)))) @@ -110,6 +115,8 @@ protected override bool Skip (Type type, string protocolName) case "NSCollectionViewUpdateItem": // Not declared in header file case "MLPredictionOptions": // Not declared in header file case "FPUIActionExtensionContext": // Conformance not in headers + // Xcode 12.5 + case "CXCall": // Conformance not in headers return true; } break; @@ -170,6 +177,10 @@ protected override bool Skip (Type type, string protocolName) case "NSUrlSessionTaskTransactionMetrics": // Conformance not in headers case "NSFileProviderDomain": // Conformance not in headers case "FPUIActionExtensionContext": // Conformance not in headers + // Xcode 12.5 + case "CXCall": // Conformance not in headers + case "CXCallUpdate": // Conformance not in headers + case "CXProviderConfiguration": // Conformance not in headers return true; } break; diff --git a/tests/xtro-sharpie/common-CoreFoundation.ignore b/tests/xtro-sharpie/common-CoreFoundation.ignore index 1f32d047651c..05a20c887812 100644 --- a/tests/xtro-sharpie/common-CoreFoundation.ignore +++ b/tests/xtro-sharpie/common-CoreFoundation.ignore @@ -277,6 +277,7 @@ !missing-field! kCFURLUbiquitousItemHasUnresolvedConflictsKey not bound !missing-field! kCFURLUbiquitousItemIsDownloadedKey not bound !missing-field! kCFURLUbiquitousItemIsDownloadingKey not bound +!missing-field! kCFURLUbiquitousItemIsExcludedFromSyncKey not bound !missing-field! kCFURLUbiquitousItemIsUploadedKey not bound !missing-field! kCFURLUbiquitousItemIsUploadingKey not bound !missing-field! kCFURLUbiquitousItemPercentDownloadedKey not bound diff --git a/tests/xtro-sharpie/common-MLCompute.ignore b/tests/xtro-sharpie/common-MLCompute.ignore index b18d56ad5aab..91c74b8427ae 100644 --- a/tests/xtro-sharpie/common-MLCompute.ignore +++ b/tests/xtro-sharpie/common-MLCompute.ignore @@ -1,12 +1,6 @@ -## sharpie skip empty types - but they can be used -!unknown-type! MLCTensorOptimizerDeviceData bound - ## `*Count` are not constant values and can change in the future -!missing-enum-value! MLCActivationType native value MLCActivationTypeCount = 19 not bound -!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationCount = 26 not bound !missing-enum-value! MLCDataType native value MLCDataTypeCount = 8 not bound !missing-enum-value! MLCDeviceType native value MLCDeviceTypeCount = 3 not bound !missing-enum-value! MLCLossType native value MLCLossTypeCount = 9 not bound !missing-enum-value! MLCPoolingType native value MLCPoolingTypeCount = 4 not bound !missing-enum-value! MLCRandomInitializerType native value MLCRandomInitializerTypeCount = 4 not bound -!missing-enum-value! MLCReductionType native value MLCReductionTypeCount = 7 not bound diff --git a/tests/xtro-sharpie/common-VideoSubscriberAccount.ignore b/tests/xtro-sharpie/common-VideoSubscriberAccount.ignore deleted file mode 100644 index 40873ae4fc0e..000000000000 --- a/tests/xtro-sharpie/common-VideoSubscriberAccount.ignore +++ /dev/null @@ -1,3 +0,0 @@ -# Present, intro is happy and the header is there but seems that -# Apple forgot to add it to the public umbrella framework -!unknown-type! VSAccountApplicationProvider bound diff --git a/tests/xtro-sharpie/iOS-AVFoundation.todo b/tests/xtro-sharpie/iOS-AVFoundation.todo new file mode 100644 index 000000000000..7630a29ed60f --- /dev/null +++ b/tests/xtro-sharpie/iOS-AVFoundation.todo @@ -0,0 +1,64 @@ +!missing-enum! AVAudioSessionInterruptionReason not bound +!missing-enum! AVPlayerInterstitialEventRestrictions not bound +!missing-enum! AVVariantPreferences not bound +!missing-enum-value! AVAudioSessionCategoryOptions native value AVAudioSessionCategoryOptionOverrideMutedMicrophoneInterruption = 128 not bound +!missing-field! AVAssetDownloadTaskPrefersLosslessAudioKey not bound +!missing-field! AVAudioSessionInterruptionReasonKey not bound +!missing-field! AVPlayerInterstitialEventObserverCurrentEventDidChangeNotification not bound +!missing-field! AVPlayerInterstitialEventObserverEventsDidChangeNotification not bound +!missing-field! AVPlayerWaitingDuringInterstitialEventReason not bound +!missing-field! AVSampleBufferDisplayLayerOutputObscuredDueToInsufficientExternalProtectionDidChangeNotification not bound +!missing-pinvoke! AVSampleBufferAttachContentKey is not bound +!missing-protocol-member! AVContentKeyRecipient::contentKeySession:didProvideContentKey: not found +!missing-protocol-member! AVQueuedSampleBufferRendering::hasSufficientMediaDataForReliablePlaybackStart not found +!missing-selector! +AVContentKeySpecifier::contentKeySpecifierForKeySystem:identifier:options: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:date:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:time:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:date:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:time:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEventController::interstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventController::playerInterstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::interstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::playerInterstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! AVAudioSession::prefersNoInterruptionsFromSystemAlerts not bound +!missing-selector! AVAudioSession::setPrefersNoInterruptionsFromSystemAlerts:error: not bound +!missing-selector! AVContentKey::contentKeySpecifier not bound +!missing-selector! AVContentKeyRequest::contentKey not bound +!missing-selector! AVContentKeyRequest::contentKeySpecifier not bound +!missing-selector! AVContentKeySpecifier::identifier not bound +!missing-selector! AVContentKeySpecifier::initForKeySystem:identifier:options: not bound +!missing-selector! AVContentKeySpecifier::keySystem not bound +!missing-selector! AVContentKeySpecifier::options not bound +!missing-selector! AVPlayerInterstitialEvent::date not bound +!missing-selector! AVPlayerInterstitialEvent::interstitialTemplateItems not bound +!missing-selector! AVPlayerInterstitialEvent::primaryItem not bound +!missing-selector! AVPlayerInterstitialEvent::restrictions not bound +!missing-selector! AVPlayerInterstitialEvent::resumptionOffset not bound +!missing-selector! AVPlayerInterstitialEvent::templateItems not bound +!missing-selector! AVPlayerInterstitialEvent::time not bound +!missing-selector! AVPlayerInterstitialEventController::cancelCurrentEventWithResumptionOffset: not bound +!missing-selector! AVPlayerInterstitialEventController::events not bound +!missing-selector! AVPlayerInterstitialEventController::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventController::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventController::setEvents: not bound +!missing-selector! AVPlayerInterstitialEventController::setInterstitialEvents: not bound +!missing-selector! AVPlayerInterstitialEventObserver::currentEvent not bound +!missing-selector! AVPlayerInterstitialEventObserver::events not bound +!missing-selector! AVPlayerInterstitialEventObserver::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialPlayer not bound +!missing-selector! AVPlayerInterstitialEventObserver::primaryPlayer not bound +!missing-selector! AVPlayerItem::automaticallyHandlesInterstitialEvents not bound +!missing-selector! AVPlayerItem::setAutomaticallyHandlesInterstitialEvents: not bound +!missing-selector! AVPlayerItem::setVariantPreferences: not bound +!missing-selector! AVPlayerItem::templatePlayerItem not bound +!missing-selector! AVPlayerItem::variantPreferences not bound +!missing-selector! AVSampleBufferDisplayLayer::outputObscuredDueToInsufficientExternalProtection not bound +!missing-selector! AVSampleBufferRenderSynchronizer::delaysRateChangeUntilHasSufficientMediaData not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setDelaysRateChangeUntilHasSufficientMediaData: not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setRate:time:atHostTime: not bound +!missing-type! AVContentKey not bound +!missing-type! AVContentKeySpecifier not bound +!missing-type! AVPlayerInterstitialEvent not bound +!missing-type! AVPlayerInterstitialEventController not bound +!missing-type! AVPlayerInterstitialEventObserver not bound diff --git a/tests/xtro-sharpie/iOS-AudioToolbox.todo b/tests/xtro-sharpie/iOS-AudioToolbox.todo new file mode 100644 index 000000000000..2930d8a27b8d --- /dev/null +++ b/tests/xtro-sharpie/iOS-AudioToolbox.todo @@ -0,0 +1 @@ +!missing-enum-value! AudioComponentInstantiationOptions native value kAudioComponentInstantiation_LoadedRemotely = 2147483648 not bound diff --git a/tests/xtro-sharpie/iOS-CallKit.todo b/tests/xtro-sharpie/iOS-CallKit.todo new file mode 100644 index 000000000000..9b7937e9110f --- /dev/null +++ b/tests/xtro-sharpie/iOS-CallKit.todo @@ -0,0 +1,4 @@ +!missing-enum! CXErrorCodeNotificationServiceExtensionError not bound +!missing-enum-value! CXErrorCode native value CXErrorCodeMissingVoIPBackgroundMode = 3 not bound +!missing-field! CXErrorDomainNotificationServiceExtension not bound +!missing-selector! +CXProvider::reportNewIncomingVoIPPushPayload:completion: not bound diff --git a/tests/xtro-sharpie/iOS-ClassKit.todo b/tests/xtro-sharpie/iOS-ClassKit.todo new file mode 100644 index 000000000000..20c544588568 --- /dev/null +++ b/tests/xtro-sharpie/iOS-ClassKit.todo @@ -0,0 +1,5 @@ +!missing-selector! CLSActivity::removeAllActivityItems not bound +!missing-selector! CLSContext::addNavigationChildContext: not bound +!missing-selector! CLSContext::navigationChildContexts not bound +!missing-selector! CLSContext::removeNavigationChildContext: not bound +!missing-selector! CLSDataStore::fetchActivityForURL:completion: not bound diff --git a/tests/xtro-sharpie/iOS-ExposureNotification.todo b/tests/xtro-sharpie/iOS-ExposureNotification.todo new file mode 100644 index 000000000000..91e96aa56003 --- /dev/null +++ b/tests/xtro-sharpie/iOS-ExposureNotification.todo @@ -0,0 +1,7 @@ +!missing-enum! ENActivityFlags not bound +!missing-selector! ENManager::activityHandler not bound +!missing-selector! ENManager::diagnosisKeysAvailableHandler not bound +!missing-selector! ENManager::preAuthorizeDiagnosisKeysWithCompletionHandler: not bound +!missing-selector! ENManager::requestPreAuthorizedDiagnosisKeysWithCompletionHandler: not bound +!missing-selector! ENManager::setActivityHandler: not bound +!missing-selector! ENManager::setDiagnosisKeysAvailableHandler: not bound diff --git a/tests/xtro-sharpie/iOS-Foundation.todo b/tests/xtro-sharpie/iOS-Foundation.todo index 3348f73b0b0f..956cba1f3c48 100644 --- a/tests/xtro-sharpie/iOS-Foundation.todo +++ b/tests/xtro-sharpie/iOS-Foundation.todo @@ -28,3 +28,6 @@ !missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound !missing-type! NSOrderedCollectionChange not bound !missing-type! NSOrderedCollectionDifference not bound +## appended from unclassified file +!missing-field! NSProgressFileOperationKindUploading not bound +!missing-field! NSURLUbiquitousItemIsExcludedFromSyncKey not bound diff --git a/tests/xtro-sharpie/iOS-GameController.todo b/tests/xtro-sharpie/iOS-GameController.todo new file mode 100644 index 000000000000..dad62fa666fa --- /dev/null +++ b/tests/xtro-sharpie/iOS-GameController.todo @@ -0,0 +1,16 @@ +!missing-enum! GCDualSenseAdaptiveTriggerMode not bound +!missing-enum! GCDualSenseAdaptiveTriggerStatus not bound +!missing-selector! GCDualSenseAdaptiveTrigger::armPosition not bound +!missing-selector! GCDualSenseAdaptiveTrigger::mode not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeFeedbackWithStartPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeOff not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeVibrationWithStartPosition:amplitude:frequency: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeWeaponWithStartPosition:endPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::status not bound +!missing-selector! GCDualSenseGamepad::leftTrigger not bound +!missing-selector! GCDualSenseGamepad::rightTrigger not bound +!missing-selector! GCDualSenseGamepad::touchpadButton not bound +!missing-selector! GCDualSenseGamepad::touchpadPrimary not bound +!missing-selector! GCDualSenseGamepad::touchpadSecondary not bound +!missing-type! GCDualSenseAdaptiveTrigger not bound +!missing-type! GCDualSenseGamepad not bound diff --git a/tests/xtro-sharpie/iOS-GameKit.todo b/tests/xtro-sharpie/iOS-GameKit.todo new file mode 100644 index 000000000000..95155b9c2dcb --- /dev/null +++ b/tests/xtro-sharpie/iOS-GameKit.todo @@ -0,0 +1,7 @@ +!missing-enum! GKFriendsAuthorizationStatus not bound +!missing-enum-value! GKError native value GKErrorFriendListDenied = 102 not bound +!missing-enum-value! GKError native value GKErrorFriendListDescriptionMissing = 100 not bound +!missing-enum-value! GKError native value GKErrorFriendListRestricted = 101 not bound +!missing-selector! GKLocalPlayer::loadFriends: not bound +!missing-selector! GKLocalPlayer::loadFriendsAuthorizationStatus: not bound +!missing-selector! GKLocalPlayer::loadFriendsWithIdentifiers:completionHandler: not bound diff --git a/tests/xtro-sharpie/iOS-HomeKit.todo b/tests/xtro-sharpie/iOS-HomeKit.todo new file mode 100644 index 000000000000..1b343e28e170 --- /dev/null +++ b/tests/xtro-sharpie/iOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-selector! HMCameraSource::aspectRatio not bound diff --git a/tests/xtro-sharpie/iOS-Intents.todo b/tests/xtro-sharpie/iOS-Intents.todo new file mode 100644 index 000000000000..f3b05b0f52c5 --- /dev/null +++ b/tests/xtro-sharpie/iOS-Intents.todo @@ -0,0 +1,14 @@ +!deprecated-attribute-missing! INCallRecord::caller missing a [Deprecated] attribute +!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen: missing a [Deprecated] attribute +!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: missing a [Deprecated] attribute +!extra-designated-initializer! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: is incorrectly decorated with an [DesignatedInitializer] attribute +!missing-enum-value! INMediaReference native value INMediaReferenceMy = 2 not bound +!missing-selector! INCallGroup::groupId not bound +!missing-selector! INCallGroup::groupName not bound +!missing-selector! INCallGroup::initWithGroupName:groupId: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen:numberOfCalls: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen:participants:numberOfCalls:isCallerIdBlocked: not bound +!missing-selector! INCallRecord::isCallerIdBlocked not bound +!missing-selector! INCallRecord::participants not bound +!missing-type! INCallGroup not bound diff --git a/tests/xtro-sharpie/iOS-MLCompute.todo b/tests/xtro-sharpie/iOS-MLCompute.todo new file mode 100644 index 000000000000..22549e22966c --- /dev/null +++ b/tests/xtro-sharpie/iOS-MLCompute.todo @@ -0,0 +1,40 @@ +!missing-enum! MLCComparisonOperation not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeClamp = 20 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeCount = 21 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeHardSwish = 19 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationCount = 30 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationDivideNoNaN = 27 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMax = 29 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMin = 28 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMultiplyNoNaN = 26 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAll = 9 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAny = 8 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeCount = 10 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeL1Norm = 7 not bound +!missing-pinvoke! MLCComparisonOperationDebugDescription is not bound +!missing-selector! +MLCActivationLayer::clampLayerWithMinValue:maxValue: not bound +!missing-selector! +MLCActivationLayer::hardSwishLayer not bound +!missing-selector! +MLCComparisonLayer::layerWithOperation: not bound +!missing-selector! +MLCGatherLayer::layerWithDimension: not bound +!missing-selector! +MLCInstanceNormalizationLayer::layerWithFeatureChannelCount:mean:variance:beta:gamma:varianceEpsilon:momentum: not bound +!missing-selector! +MLCReductionLayer::layerWithReductionType:dimensions: not bound +!missing-selector! +MLCScatterLayer::layerWithDimension:reduceType: not bound +!missing-selector! +MLCSelectionLayer::layer not bound +!missing-selector! +MLCTensorData::dataWithBytesNoCopy:length:deallocator: not bound +!missing-selector! MLCComparisonLayer::operation not bound +!missing-selector! MLCGatherLayer::dimension not bound +!missing-selector! MLCGraph::gatherWithDimension:source:indices: not bound +!missing-selector! MLCGraph::scatterWithDimension:source:indices:copyFrom:reduceType: not bound +!missing-selector! MLCGraph::selectWithSources:condition: not bound +!missing-selector! MLCInferenceGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-selector! MLCInstanceNormalizationLayer::mean not bound +!missing-selector! MLCInstanceNormalizationLayer::variance not bound +!missing-selector! MLCReductionLayer::dimensions not bound +!missing-selector! MLCReshapeLayer::shape not bound +!missing-selector! MLCScatterLayer::dimension not bound +!missing-selector! MLCScatterLayer::reduceType not bound +!missing-selector! MLCTrainingGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-type! MLCComparisonLayer not bound +!missing-type! MLCGatherLayer not bound +!missing-type! MLCScatterLayer not bound +!missing-type! MLCSelectionLayer not bound diff --git a/tests/xtro-sharpie/iOS-MediaPlayer.todo b/tests/xtro-sharpie/iOS-MediaPlayer.todo new file mode 100644 index 000000000000..1dbf334fd31d --- /dev/null +++ b/tests/xtro-sharpie/iOS-MediaPlayer.todo @@ -0,0 +1,2 @@ +!missing-field! MPMediaItemPropertyIsPreorder not bound +!missing-selector! MPMediaItem::isPreorder not bound diff --git a/tests/xtro-sharpie/iOS-PassKit.todo b/tests/xtro-sharpie/iOS-PassKit.todo new file mode 100644 index 000000000000..6ff76ddb38fe --- /dev/null +++ b/tests/xtro-sharpie/iOS-PassKit.todo @@ -0,0 +1,4 @@ +!missing-enum! PKRadioTechnology not bound +!missing-field! PKPaymentNetworkMir not bound +!missing-selector! PKAddCarKeyPassConfiguration::setSupportedRadioTechnologies: not bound +!missing-selector! PKAddCarKeyPassConfiguration::supportedRadioTechnologies not bound diff --git a/tests/xtro-sharpie/iOS-Speech.todo b/tests/xtro-sharpie/iOS-Speech.todo new file mode 100644 index 000000000000..13d5fd0b5a2e --- /dev/null +++ b/tests/xtro-sharpie/iOS-Speech.todo @@ -0,0 +1,7 @@ +!missing-selector! SFSpeechRecognitionMetadata::averagePauseDuration not bound +!missing-selector! SFSpeechRecognitionMetadata::speakingRate not bound +!missing-selector! SFSpeechRecognitionMetadata::speechDuration not bound +!missing-selector! SFSpeechRecognitionMetadata::speechStartTimestamp not bound +!missing-selector! SFSpeechRecognitionMetadata::voiceAnalytics not bound +!missing-selector! SFSpeechRecognitionResult::speechRecognitionMetadata not bound +!missing-type! SFSpeechRecognitionMetadata not bound diff --git a/tests/xtro-sharpie/iOS-StoreKit.todo b/tests/xtro-sharpie/iOS-StoreKit.todo new file mode 100644 index 000000000000..c039c4e35ddb --- /dev/null +++ b/tests/xtro-sharpie/iOS-StoreKit.todo @@ -0,0 +1,25 @@ +!missing-selector! +SKAdNetwork::endImpression:completionHandler: not bound +!missing-selector! +SKAdNetwork::startImpression:completionHandler: not bound +!missing-selector! SKAdImpression::adCampaignIdentifier not bound +!missing-selector! SKAdImpression::adDescription not bound +!missing-selector! SKAdImpression::adImpressionIdentifier not bound +!missing-selector! SKAdImpression::adNetworkIdentifier not bound +!missing-selector! SKAdImpression::adPurchaserName not bound +!missing-selector! SKAdImpression::adType not bound +!missing-selector! SKAdImpression::advertisedAppStoreItemIdentifier not bound +!missing-selector! SKAdImpression::setAdCampaignIdentifier: not bound +!missing-selector! SKAdImpression::setAdDescription: not bound +!missing-selector! SKAdImpression::setAdImpressionIdentifier: not bound +!missing-selector! SKAdImpression::setAdNetworkIdentifier: not bound +!missing-selector! SKAdImpression::setAdPurchaserName: not bound +!missing-selector! SKAdImpression::setAdType: not bound +!missing-selector! SKAdImpression::setAdvertisedAppStoreItemIdentifier: not bound +!missing-selector! SKAdImpression::setSignature: not bound +!missing-selector! SKAdImpression::setSourceAppStoreItemIdentifier: not bound +!missing-selector! SKAdImpression::setTimestamp: not bound +!missing-selector! SKAdImpression::setVersion: not bound +!missing-selector! SKAdImpression::signature not bound +!missing-selector! SKAdImpression::sourceAppStoreItemIdentifier not bound +!missing-selector! SKAdImpression::timestamp not bound +!missing-selector! SKAdImpression::version not bound +!missing-type! SKAdImpression not bound diff --git a/tests/xtro-sharpie/iOS-UIKit.todo b/tests/xtro-sharpie/iOS-UIKit.todo index 4b7894a0771c..fe3d7b12b605 100644 --- a/tests/xtro-sharpie/iOS-UIKit.todo +++ b/tests/xtro-sharpie/iOS-UIKit.todo @@ -16,3 +16,53 @@ !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound +## appended from unclassified file +!missing-enum! UIListSeparatorVisibility not bound +!missing-enum! UIPrintRenderingQuality not bound +!missing-enum! UISplitViewControllerDisplayModeButtonVisibility not bound +!missing-field! UIApplicationLaunchOptionsEventAttributionKey not bound +!missing-field! UIApplicationOpenExternalURLOptionsEventAttributionKey not bound +!missing-field! UIApplicationOpenURLOptionsEventAttributionKey not bound +!missing-field! UIListSeparatorAutomaticInsets not bound +!missing-selector! UICollectionLayoutListConfiguration::itemSeparatorHandler not bound +!missing-selector! UICollectionLayoutListConfiguration::separatorConfiguration not bound +!missing-selector! UICollectionLayoutListConfiguration::setItemSeparatorHandler: not bound +!missing-selector! UICollectionLayoutListConfiguration::setSeparatorConfiguration: not bound +!missing-selector! UIEventAttribution::destinationURL not bound +!missing-selector! UIEventAttribution::initWithSourceIdentifier:destinationURL:sourceDescription:purchaser: not bound +!missing-selector! UIEventAttribution::purchaser not bound +!missing-selector! UIEventAttribution::reportEndpoint not bound +!missing-selector! UIEventAttribution::sourceDescription not bound +!missing-selector! UIEventAttribution::sourceIdentifier not bound +!missing-selector! UIListSeparatorConfiguration::bottomSeparatorInsets not bound +!missing-selector! UIListSeparatorConfiguration::bottomSeparatorVisibility not bound +!missing-selector! UIListSeparatorConfiguration::color not bound +!missing-selector! UIListSeparatorConfiguration::initWithListAppearance: not bound +!missing-selector! UIListSeparatorConfiguration::multipleSelectionColor not bound +!missing-selector! UIListSeparatorConfiguration::setBottomSeparatorInsets: not bound +!missing-selector! UIListSeparatorConfiguration::setBottomSeparatorVisibility: not bound +!missing-selector! UIListSeparatorConfiguration::setColor: not bound +!missing-selector! UIListSeparatorConfiguration::setMultipleSelectionColor: not bound +!missing-selector! UIListSeparatorConfiguration::setTopSeparatorInsets: not bound +!missing-selector! UIListSeparatorConfiguration::setTopSeparatorVisibility: not bound +!missing-selector! UIListSeparatorConfiguration::topSeparatorInsets not bound +!missing-selector! UIListSeparatorConfiguration::topSeparatorVisibility not bound +!missing-selector! UIPrinterDestination::displayName not bound +!missing-selector! UIPrinterDestination::initWithURL: not bound +!missing-selector! UIPrinterDestination::setDisplayName: not bound +!missing-selector! UIPrinterDestination::setTxtRecord: not bound +!missing-selector! UIPrinterDestination::setURL: not bound +!missing-selector! UIPrinterDestination::txtRecord not bound +!missing-selector! UIPrinterDestination::URL not bound +!missing-selector! UIPrintPageRenderer::currentRenderingQualityForRequestedRenderingQuality: not bound +!missing-selector! UIPrintServiceExtension::printerDestinationsForPrintInfo: not bound +!missing-selector! UISceneOpenExternalURLOptions::eventAttribution not bound +!missing-selector! UISceneOpenExternalURLOptions::setEventAttribution: not bound +!missing-selector! UISceneOpenURLOptions::eventAttribution not bound +!missing-selector! UISplitViewController::displayModeButtonVisibility not bound +!missing-selector! UISplitViewController::setDisplayModeButtonVisibility: not bound +!missing-type! UIEventAttribution not bound +!missing-type! UIEventAttributionView not bound +!missing-type! UIListSeparatorConfiguration not bound +!missing-type! UIPrinterDestination not bound +!missing-type! UIPrintServiceExtension not bound diff --git a/tests/xtro-sharpie/iOS-VideoToolbox.todo b/tests/xtro-sharpie/iOS-VideoToolbox.todo new file mode 100644 index 000000000000..c913b2a8b600 --- /dev/null +++ b/tests/xtro-sharpie/iOS-VideoToolbox.todo @@ -0,0 +1,2 @@ +!missing-field! kVTCompressionPropertyKey_BaseLayerFrameRateFraction not bound +!missing-field! kVTVideoEncoderSpecification_EnableLowLatencyRateControl not bound diff --git a/tests/xtro-sharpie/iOS-WebKit.todo b/tests/xtro-sharpie/iOS-WebKit.todo new file mode 100644 index 000000000000..6bb0226caf59 --- /dev/null +++ b/tests/xtro-sharpie/iOS-WebKit.todo @@ -0,0 +1,23 @@ +!missing-enum! WKDownloadRedirectPolicy not bound +!missing-enum! WKMediaPlaybackState not bound +!missing-enum-value! WKNavigationActionPolicy native value WKNavigationActionPolicyDownload = 2 not bound +!missing-enum-value! WKNavigationResponsePolicy native value WKNavigationResponsePolicyDownload = 2 not bound +!missing-protocol! WKDownloadDelegate not bound +!missing-protocol-member! WKNavigationDelegate::webView:navigationAction:didBecomeDownload: not found +!missing-protocol-member! WKNavigationDelegate::webView:navigationResponse:didBecomeDownload: not found +!missing-selector! WKDownload::cancel: not bound +!missing-selector! WKDownload::delegate not bound +!missing-selector! WKDownload::originalRequest not bound +!missing-selector! WKDownload::setDelegate: not bound +!missing-selector! WKDownload::webView not bound +!missing-selector! WKNavigationAction::shouldPerformDownload not bound +!missing-selector! WKPreferences::setTextInteractionEnabled: not bound +!missing-selector! WKPreferences::textInteractionEnabled not bound +!missing-selector! WKWebView::closeAllMediaPresentations not bound +!missing-selector! WKWebView::pauseAllMediaPlayback: not bound +!missing-selector! WKWebView::requestMediaPlaybackState: not bound +!missing-selector! WKWebView::resumeAllMediaPlayback: not bound +!missing-selector! WKWebView::resumeDownloadFromResumeData:completionHandler: not bound +!missing-selector! WKWebView::startDownloadUsingRequest:completionHandler: not bound +!missing-selector! WKWebView::suspendAllMediaPlayback: not bound +!missing-type! WKDownload not bound diff --git a/tests/xtro-sharpie/macOS-AVFoundation.todo b/tests/xtro-sharpie/macOS-AVFoundation.todo new file mode 100644 index 000000000000..887e0c00b022 --- /dev/null +++ b/tests/xtro-sharpie/macOS-AVFoundation.todo @@ -0,0 +1,60 @@ +!missing-enum! AVAudioSessionInterruptionReason not bound +!missing-enum! AVPlayerInterstitialEventRestrictions not bound +!missing-enum! AVVariantPreferences not bound +!missing-enum-value! AVAudioSessionCategoryOptions native value AVAudioSessionCategoryOptionOverrideMutedMicrophoneInterruption = 128 not bound +!missing-field! AVPlayerInterstitialEventObserverCurrentEventDidChangeNotification not bound +!missing-field! AVPlayerInterstitialEventObserverEventsDidChangeNotification not bound +!missing-field! AVPlayerWaitingDuringInterstitialEventReason not bound +!missing-field! AVSampleBufferDisplayLayerOutputObscuredDueToInsufficientExternalProtectionDidChangeNotification not bound +!missing-pinvoke! AVSampleBufferAttachContentKey is not bound +!missing-protocol-member! AVContentKeyRecipient::contentKeySession:didProvideContentKey: not found +!missing-protocol-member! AVQueuedSampleBufferRendering::hasSufficientMediaDataForReliablePlaybackStart not found +!missing-selector! +AVContentKeySpecifier::contentKeySpecifierForKeySystem:identifier:options: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:date:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:time:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:date:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:time:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEventController::interstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventController::playerInterstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::interstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::playerInterstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! AVContentKey::contentKeySpecifier not bound +!missing-selector! AVContentKeyRequest::contentKey not bound +!missing-selector! AVContentKeyRequest::contentKeySpecifier not bound +!missing-selector! AVContentKeySpecifier::identifier not bound +!missing-selector! AVContentKeySpecifier::initForKeySystem:identifier:options: not bound +!missing-selector! AVContentKeySpecifier::keySystem not bound +!missing-selector! AVContentKeySpecifier::options not bound +!missing-selector! AVPlayerInterstitialEvent::date not bound +!missing-selector! AVPlayerInterstitialEvent::interstitialTemplateItems not bound +!missing-selector! AVPlayerInterstitialEvent::primaryItem not bound +!missing-selector! AVPlayerInterstitialEvent::restrictions not bound +!missing-selector! AVPlayerInterstitialEvent::resumptionOffset not bound +!missing-selector! AVPlayerInterstitialEvent::templateItems not bound +!missing-selector! AVPlayerInterstitialEvent::time not bound +!missing-selector! AVPlayerInterstitialEventController::cancelCurrentEventWithResumptionOffset: not bound +!missing-selector! AVPlayerInterstitialEventController::events not bound +!missing-selector! AVPlayerInterstitialEventController::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventController::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventController::setEvents: not bound +!missing-selector! AVPlayerInterstitialEventController::setInterstitialEvents: not bound +!missing-selector! AVPlayerInterstitialEventObserver::currentEvent not bound +!missing-selector! AVPlayerInterstitialEventObserver::events not bound +!missing-selector! AVPlayerInterstitialEventObserver::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialPlayer not bound +!missing-selector! AVPlayerInterstitialEventObserver::primaryPlayer not bound +!missing-selector! AVPlayerItem::automaticallyHandlesInterstitialEvents not bound +!missing-selector! AVPlayerItem::setAutomaticallyHandlesInterstitialEvents: not bound +!missing-selector! AVPlayerItem::setVariantPreferences: not bound +!missing-selector! AVPlayerItem::templatePlayerItem not bound +!missing-selector! AVPlayerItem::variantPreferences not bound +!missing-selector! AVSampleBufferDisplayLayer::outputObscuredDueToInsufficientExternalProtection not bound +!missing-selector! AVSampleBufferRenderSynchronizer::delaysRateChangeUntilHasSufficientMediaData not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setDelaysRateChangeUntilHasSufficientMediaData: not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setRate:time:atHostTime: not bound +!missing-type! AVContentKey not bound +!missing-type! AVContentKeySpecifier not bound +!missing-type! AVPlayerInterstitialEvent not bound +!missing-type! AVPlayerInterstitialEventController not bound +!missing-type! AVPlayerInterstitialEventObserver not bound diff --git a/tests/xtro-sharpie/macOS-AudioToolbox.todo b/tests/xtro-sharpie/macOS-AudioToolbox.todo new file mode 100644 index 000000000000..2930d8a27b8d --- /dev/null +++ b/tests/xtro-sharpie/macOS-AudioToolbox.todo @@ -0,0 +1 @@ +!missing-enum-value! AudioComponentInstantiationOptions native value kAudioComponentInstantiation_LoadedRemotely = 2147483648 not bound diff --git a/tests/xtro-sharpie/macOS-CallKit.todo b/tests/xtro-sharpie/macOS-CallKit.todo new file mode 100644 index 000000000000..49710d26fffa --- /dev/null +++ b/tests/xtro-sharpie/macOS-CallKit.todo @@ -0,0 +1 @@ +!missing-enum-value! CXErrorCode native value CXErrorCodeMissingVoIPBackgroundMode = 3 not bound diff --git a/tests/xtro-sharpie/macOS-ClassKit.todo b/tests/xtro-sharpie/macOS-ClassKit.todo new file mode 100644 index 000000000000..20c544588568 --- /dev/null +++ b/tests/xtro-sharpie/macOS-ClassKit.todo @@ -0,0 +1,5 @@ +!missing-selector! CLSActivity::removeAllActivityItems not bound +!missing-selector! CLSContext::addNavigationChildContext: not bound +!missing-selector! CLSContext::navigationChildContexts not bound +!missing-selector! CLSContext::removeNavigationChildContext: not bound +!missing-selector! CLSDataStore::fetchActivityForURL:completion: not bound diff --git a/tests/xtro-sharpie/macOS-DeviceCheck.todo b/tests/xtro-sharpie/macOS-DeviceCheck.todo new file mode 100644 index 000000000000..ee0d7e651484 --- /dev/null +++ b/tests/xtro-sharpie/macOS-DeviceCheck.todo @@ -0,0 +1,6 @@ +!missing-selector! +DCAppAttestService::sharedService not bound +!missing-selector! DCAppAttestService::attestKey:clientDataHash:completionHandler: not bound +!missing-selector! DCAppAttestService::generateAssertion:clientDataHash:completionHandler: not bound +!missing-selector! DCAppAttestService::generateKeyWithCompletionHandler: not bound +!missing-selector! DCAppAttestService::isSupported not bound +!missing-type! DCAppAttestService not bound diff --git a/tests/xtro-sharpie/macOS-FileProvider.ignore b/tests/xtro-sharpie/macOS-FileProvider.ignore index 42643a791eea..059d35dfaa12 100644 --- a/tests/xtro-sharpie/macOS-FileProvider.ignore +++ b/tests/xtro-sharpie/macOS-FileProvider.ignore @@ -9,4 +9,3 @@ !extra-protocol-member! unexpected selector NSFileProviderItem::typeIdentifier found ## XAMCORE_4_0 -> not constant - iOS/tvOS/watchOS are different (and future updates might change the current value too) -!missing-enum-value! NSFileProviderItemCapabilities native value NSFileProviderItemCapabilitiesAllowsAll = 127 not bound diff --git a/tests/xtro-sharpie/macOS-FileProvider.todo b/tests/xtro-sharpie/macOS-FileProvider.todo new file mode 100644 index 000000000000..fe3cde3d59d3 --- /dev/null +++ b/tests/xtro-sharpie/macOS-FileProvider.todo @@ -0,0 +1,30 @@ +!missing-enum! NSFileProviderDomainTestingModes not bound +!missing-enum! NSFileProviderTestingOperationSide not bound +!missing-enum-value! NSFileProviderCreateItemOptions native value NSFileProviderCreateItemDeletionConflicted = 2 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorItemHasUnsyncedEdits = -2007 not bound +!missing-enum-value! NSFileProviderError native value NSFileProviderErrorNonEvictableChildren = -2006 not bound +!missing-enum-value! NSFileProviderItemCapabilities native value NSFileProviderItemCapabilitiesAllowsAll = 63 not bound +!missing-enum-value! NSFileProviderItemCapabilities native value NSFileProviderItemCapabilitiesAllowsExcludingFromSync = 128 not bound +!missing-field! NSFileProviderErrorCausedByErrorsKey not bound +!missing-field! NSFileProviderMaterializedSetDidChange not bound +!missing-field! NSFileProviderPendingSetDidChange not bound +!missing-protocol! NSFileProviderDomainState not bound +!missing-protocol! NSFileProviderPendingSetEnumerator not bound +!missing-protocol! NSFileProviderTestingBounce not bound +!missing-protocol! NSFileProviderTestingChildrenEnumeration not bound +!missing-protocol! NSFileProviderTestingContentFetch not bound +!missing-protocol! NSFileProviderTestingIngestion not bound +!missing-protocol! NSFileProviderTestingLookup not bound +!missing-protocol! NSFileProviderTestingOperation not bound +!missing-protocol! NSFileProviderTestingPropagation not bound +!missing-protocol-member! NSFileProviderReplicatedExtension::pendingItemsDidChangeWithCompletionHandler: not found +!missing-selector! NSFileProviderDomain::setTestingModes: not bound +!missing-selector! NSFileProviderDomain::testingModes not bound +!missing-selector! NSFileProviderDomainVersion::compare: not bound +!missing-selector! NSFileProviderDomainVersion::next not bound +!missing-selector! NSFileProviderManager::enumeratorForPendingItems not bound +!missing-selector! NSFileProviderManager::globalProgressForKind: not bound +!missing-selector! NSFileProviderManager::listAvailableTestingOperationsWithError: not bound +!missing-selector! NSFileProviderManager::runTestingOperations:error: not bound +!missing-selector! NSFileProviderRequest::domainVersion not bound +!missing-type! NSFileProviderDomainVersion not bound diff --git a/tests/xtro-sharpie/macOS-Foundation.todo b/tests/xtro-sharpie/macOS-Foundation.todo index 3348f73b0b0f..956cba1f3c48 100644 --- a/tests/xtro-sharpie/macOS-Foundation.todo +++ b/tests/xtro-sharpie/macOS-Foundation.todo @@ -28,3 +28,6 @@ !missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound !missing-type! NSOrderedCollectionChange not bound !missing-type! NSOrderedCollectionDifference not bound +## appended from unclassified file +!missing-field! NSProgressFileOperationKindUploading not bound +!missing-field! NSURLUbiquitousItemIsExcludedFromSyncKey not bound diff --git a/tests/xtro-sharpie/macOS-GameController.todo b/tests/xtro-sharpie/macOS-GameController.todo new file mode 100644 index 000000000000..dad62fa666fa --- /dev/null +++ b/tests/xtro-sharpie/macOS-GameController.todo @@ -0,0 +1,16 @@ +!missing-enum! GCDualSenseAdaptiveTriggerMode not bound +!missing-enum! GCDualSenseAdaptiveTriggerStatus not bound +!missing-selector! GCDualSenseAdaptiveTrigger::armPosition not bound +!missing-selector! GCDualSenseAdaptiveTrigger::mode not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeFeedbackWithStartPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeOff not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeVibrationWithStartPosition:amplitude:frequency: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeWeaponWithStartPosition:endPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::status not bound +!missing-selector! GCDualSenseGamepad::leftTrigger not bound +!missing-selector! GCDualSenseGamepad::rightTrigger not bound +!missing-selector! GCDualSenseGamepad::touchpadButton not bound +!missing-selector! GCDualSenseGamepad::touchpadPrimary not bound +!missing-selector! GCDualSenseGamepad::touchpadSecondary not bound +!missing-type! GCDualSenseAdaptiveTrigger not bound +!missing-type! GCDualSenseGamepad not bound diff --git a/tests/xtro-sharpie/macOS-GameKit.todo b/tests/xtro-sharpie/macOS-GameKit.todo new file mode 100644 index 000000000000..95155b9c2dcb --- /dev/null +++ b/tests/xtro-sharpie/macOS-GameKit.todo @@ -0,0 +1,7 @@ +!missing-enum! GKFriendsAuthorizationStatus not bound +!missing-enum-value! GKError native value GKErrorFriendListDenied = 102 not bound +!missing-enum-value! GKError native value GKErrorFriendListDescriptionMissing = 100 not bound +!missing-enum-value! GKError native value GKErrorFriendListRestricted = 101 not bound +!missing-selector! GKLocalPlayer::loadFriends: not bound +!missing-selector! GKLocalPlayer::loadFriendsAuthorizationStatus: not bound +!missing-selector! GKLocalPlayer::loadFriendsWithIdentifiers:completionHandler: not bound diff --git a/tests/xtro-sharpie/macOS-Intents.todo b/tests/xtro-sharpie/macOS-Intents.todo new file mode 100644 index 000000000000..cb8ff83ce122 --- /dev/null +++ b/tests/xtro-sharpie/macOS-Intents.todo @@ -0,0 +1,4 @@ +!missing-selector! INCallGroup::groupId not bound +!missing-selector! INCallGroup::groupName not bound +!missing-selector! INCallGroup::initWithGroupName:groupId: not bound +!missing-type! INCallGroup not bound diff --git a/tests/xtro-sharpie/macOS-MLCompute.todo b/tests/xtro-sharpie/macOS-MLCompute.todo new file mode 100644 index 000000000000..22549e22966c --- /dev/null +++ b/tests/xtro-sharpie/macOS-MLCompute.todo @@ -0,0 +1,40 @@ +!missing-enum! MLCComparisonOperation not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeClamp = 20 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeCount = 21 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeHardSwish = 19 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationCount = 30 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationDivideNoNaN = 27 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMax = 29 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMin = 28 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMultiplyNoNaN = 26 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAll = 9 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAny = 8 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeCount = 10 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeL1Norm = 7 not bound +!missing-pinvoke! MLCComparisonOperationDebugDescription is not bound +!missing-selector! +MLCActivationLayer::clampLayerWithMinValue:maxValue: not bound +!missing-selector! +MLCActivationLayer::hardSwishLayer not bound +!missing-selector! +MLCComparisonLayer::layerWithOperation: not bound +!missing-selector! +MLCGatherLayer::layerWithDimension: not bound +!missing-selector! +MLCInstanceNormalizationLayer::layerWithFeatureChannelCount:mean:variance:beta:gamma:varianceEpsilon:momentum: not bound +!missing-selector! +MLCReductionLayer::layerWithReductionType:dimensions: not bound +!missing-selector! +MLCScatterLayer::layerWithDimension:reduceType: not bound +!missing-selector! +MLCSelectionLayer::layer not bound +!missing-selector! +MLCTensorData::dataWithBytesNoCopy:length:deallocator: not bound +!missing-selector! MLCComparisonLayer::operation not bound +!missing-selector! MLCGatherLayer::dimension not bound +!missing-selector! MLCGraph::gatherWithDimension:source:indices: not bound +!missing-selector! MLCGraph::scatterWithDimension:source:indices:copyFrom:reduceType: not bound +!missing-selector! MLCGraph::selectWithSources:condition: not bound +!missing-selector! MLCInferenceGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-selector! MLCInstanceNormalizationLayer::mean not bound +!missing-selector! MLCInstanceNormalizationLayer::variance not bound +!missing-selector! MLCReductionLayer::dimensions not bound +!missing-selector! MLCReshapeLayer::shape not bound +!missing-selector! MLCScatterLayer::dimension not bound +!missing-selector! MLCScatterLayer::reduceType not bound +!missing-selector! MLCTrainingGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-type! MLCComparisonLayer not bound +!missing-type! MLCGatherLayer not bound +!missing-type! MLCScatterLayer not bound +!missing-type! MLCSelectionLayer not bound diff --git a/tests/xtro-sharpie/macOS-MediaPlayer.todo b/tests/xtro-sharpie/macOS-MediaPlayer.todo new file mode 100644 index 000000000000..2b1b52f76021 --- /dev/null +++ b/tests/xtro-sharpie/macOS-MediaPlayer.todo @@ -0,0 +1 @@ +!missing-field! MPMediaItemPropertyIsPreorder not bound diff --git a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo index 081571e636b2..ff56a4f180f3 100644 --- a/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo +++ b/tests/xtro-sharpie/macOS-MetalPerformanceShadersGraph.todo @@ -275,3 +275,10 @@ !missing-type! MPSGraphTensorData not bound !missing-type! MPSGraphVariableOp not bound !missing-selector! MPSGraph::constantWithScalar:dataType: not bound +## appended from unclassified file +!missing-enum! MPSGraphScatterMode not bound +!missing-selector! MPSGraph::scatterNDWithUpdatesTensor:indicesTensor:shape:batchDimensions:mode:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceGradientTensor:fwdInShapeTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:name: not bound +!missing-selector! MPSGraph::sliceTensor:starts:ends:strides:startMask:endMask:squeezeMask:name: not bound diff --git a/tests/xtro-sharpie/macOS-PassKit.todo b/tests/xtro-sharpie/macOS-PassKit.todo new file mode 100644 index 000000000000..6ff76ddb38fe --- /dev/null +++ b/tests/xtro-sharpie/macOS-PassKit.todo @@ -0,0 +1,4 @@ +!missing-enum! PKRadioTechnology not bound +!missing-field! PKPaymentNetworkMir not bound +!missing-selector! PKAddCarKeyPassConfiguration::setSupportedRadioTechnologies: not bound +!missing-selector! PKAddCarKeyPassConfiguration::supportedRadioTechnologies not bound diff --git a/tests/xtro-sharpie/macOS-Speech.todo b/tests/xtro-sharpie/macOS-Speech.todo new file mode 100644 index 000000000000..13d5fd0b5a2e --- /dev/null +++ b/tests/xtro-sharpie/macOS-Speech.todo @@ -0,0 +1,7 @@ +!missing-selector! SFSpeechRecognitionMetadata::averagePauseDuration not bound +!missing-selector! SFSpeechRecognitionMetadata::speakingRate not bound +!missing-selector! SFSpeechRecognitionMetadata::speechDuration not bound +!missing-selector! SFSpeechRecognitionMetadata::speechStartTimestamp not bound +!missing-selector! SFSpeechRecognitionMetadata::voiceAnalytics not bound +!missing-selector! SFSpeechRecognitionResult::speechRecognitionMetadata not bound +!missing-type! SFSpeechRecognitionMetadata not bound diff --git a/tests/xtro-sharpie/macOS-VideoToolbox.todo b/tests/xtro-sharpie/macOS-VideoToolbox.todo new file mode 100644 index 000000000000..c913b2a8b600 --- /dev/null +++ b/tests/xtro-sharpie/macOS-VideoToolbox.todo @@ -0,0 +1,2 @@ +!missing-field! kVTCompressionPropertyKey_BaseLayerFrameRateFraction not bound +!missing-field! kVTVideoEncoderSpecification_EnableLowLatencyRateControl not bound diff --git a/tests/xtro-sharpie/macOS-WebKit.todo b/tests/xtro-sharpie/macOS-WebKit.todo new file mode 100644 index 000000000000..6bb0226caf59 --- /dev/null +++ b/tests/xtro-sharpie/macOS-WebKit.todo @@ -0,0 +1,23 @@ +!missing-enum! WKDownloadRedirectPolicy not bound +!missing-enum! WKMediaPlaybackState not bound +!missing-enum-value! WKNavigationActionPolicy native value WKNavigationActionPolicyDownload = 2 not bound +!missing-enum-value! WKNavigationResponsePolicy native value WKNavigationResponsePolicyDownload = 2 not bound +!missing-protocol! WKDownloadDelegate not bound +!missing-protocol-member! WKNavigationDelegate::webView:navigationAction:didBecomeDownload: not found +!missing-protocol-member! WKNavigationDelegate::webView:navigationResponse:didBecomeDownload: not found +!missing-selector! WKDownload::cancel: not bound +!missing-selector! WKDownload::delegate not bound +!missing-selector! WKDownload::originalRequest not bound +!missing-selector! WKDownload::setDelegate: not bound +!missing-selector! WKDownload::webView not bound +!missing-selector! WKNavigationAction::shouldPerformDownload not bound +!missing-selector! WKPreferences::setTextInteractionEnabled: not bound +!missing-selector! WKPreferences::textInteractionEnabled not bound +!missing-selector! WKWebView::closeAllMediaPresentations not bound +!missing-selector! WKWebView::pauseAllMediaPlayback: not bound +!missing-selector! WKWebView::requestMediaPlaybackState: not bound +!missing-selector! WKWebView::resumeAllMediaPlayback: not bound +!missing-selector! WKWebView::resumeDownloadFromResumeData:completionHandler: not bound +!missing-selector! WKWebView::startDownloadUsingRequest:completionHandler: not bound +!missing-selector! WKWebView::suspendAllMediaPlayback: not bound +!missing-type! WKDownload not bound diff --git a/tests/xtro-sharpie/tvOS-AVFoundation.todo b/tests/xtro-sharpie/tvOS-AVFoundation.todo new file mode 100644 index 000000000000..cb5f2d1c9161 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-AVFoundation.todo @@ -0,0 +1,62 @@ +!missing-enum! AVAudioSessionInterruptionReason not bound +!missing-enum! AVPlayerInterstitialEventRestrictions not bound +!missing-enum! AVVariantPreferences not bound +!missing-enum-value! AVAudioSessionCategoryOptions native value AVAudioSessionCategoryOptionOverrideMutedMicrophoneInterruption = 128 not bound +!missing-field! AVPlayerInterstitialEventObserverCurrentEventDidChangeNotification not bound +!missing-field! AVPlayerInterstitialEventObserverEventsDidChangeNotification not bound +!missing-field! AVPlayerWaitingDuringInterstitialEventReason not bound +!missing-field! AVSampleBufferDisplayLayerOutputObscuredDueToInsufficientExternalProtectionDidChangeNotification not bound +!missing-pinvoke! AVSampleBufferAttachContentKey is not bound +!missing-protocol-member! AVContentKeyRecipient::contentKeySession:didProvideContentKey: not found +!missing-protocol-member! AVQueuedSampleBufferRendering::hasSufficientMediaDataForReliablePlaybackStart not found +!missing-selector! +AVContentKeySpecifier::contentKeySpecifierForKeySystem:identifier:options: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:date:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:time:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:date:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:time:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEventController::interstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventController::playerInterstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::interstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::playerInterstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! AVAudioSession::prefersNoInterruptionsFromSystemAlerts not bound +!missing-selector! AVAudioSession::setPrefersNoInterruptionsFromSystemAlerts:error: not bound +!missing-selector! AVContentKey::contentKeySpecifier not bound +!missing-selector! AVContentKeyRequest::contentKey not bound +!missing-selector! AVContentKeyRequest::contentKeySpecifier not bound +!missing-selector! AVContentKeySpecifier::identifier not bound +!missing-selector! AVContentKeySpecifier::initForKeySystem:identifier:options: not bound +!missing-selector! AVContentKeySpecifier::keySystem not bound +!missing-selector! AVContentKeySpecifier::options not bound +!missing-selector! AVPlayerInterstitialEvent::date not bound +!missing-selector! AVPlayerInterstitialEvent::interstitialTemplateItems not bound +!missing-selector! AVPlayerInterstitialEvent::primaryItem not bound +!missing-selector! AVPlayerInterstitialEvent::restrictions not bound +!missing-selector! AVPlayerInterstitialEvent::resumptionOffset not bound +!missing-selector! AVPlayerInterstitialEvent::templateItems not bound +!missing-selector! AVPlayerInterstitialEvent::time not bound +!missing-selector! AVPlayerInterstitialEventController::cancelCurrentEventWithResumptionOffset: not bound +!missing-selector! AVPlayerInterstitialEventController::events not bound +!missing-selector! AVPlayerInterstitialEventController::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventController::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventController::setEvents: not bound +!missing-selector! AVPlayerInterstitialEventController::setInterstitialEvents: not bound +!missing-selector! AVPlayerInterstitialEventObserver::currentEvent not bound +!missing-selector! AVPlayerInterstitialEventObserver::events not bound +!missing-selector! AVPlayerInterstitialEventObserver::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialPlayer not bound +!missing-selector! AVPlayerInterstitialEventObserver::primaryPlayer not bound +!missing-selector! AVPlayerItem::automaticallyHandlesInterstitialEvents not bound +!missing-selector! AVPlayerItem::setAutomaticallyHandlesInterstitialEvents: not bound +!missing-selector! AVPlayerItem::setVariantPreferences: not bound +!missing-selector! AVPlayerItem::templatePlayerItem not bound +!missing-selector! AVPlayerItem::variantPreferences not bound +!missing-selector! AVSampleBufferDisplayLayer::outputObscuredDueToInsufficientExternalProtection not bound +!missing-selector! AVSampleBufferRenderSynchronizer::delaysRateChangeUntilHasSufficientMediaData not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setDelaysRateChangeUntilHasSufficientMediaData: not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setRate:time:atHostTime: not bound +!missing-type! AVContentKey not bound +!missing-type! AVContentKeySpecifier not bound +!missing-type! AVPlayerInterstitialEvent not bound +!missing-type! AVPlayerInterstitialEventController not bound +!missing-type! AVPlayerInterstitialEventObserver not bound diff --git a/tests/xtro-sharpie/tvOS-AudioToolbox.todo b/tests/xtro-sharpie/tvOS-AudioToolbox.todo new file mode 100644 index 000000000000..2930d8a27b8d --- /dev/null +++ b/tests/xtro-sharpie/tvOS-AudioToolbox.todo @@ -0,0 +1 @@ +!missing-enum-value! AudioComponentInstantiationOptions native value kAudioComponentInstantiation_LoadedRemotely = 2147483648 not bound diff --git a/tests/xtro-sharpie/tvOS-Foundation.todo b/tests/xtro-sharpie/tvOS-Foundation.todo index 3348f73b0b0f..956cba1f3c48 100644 --- a/tests/xtro-sharpie/tvOS-Foundation.todo +++ b/tests/xtro-sharpie/tvOS-Foundation.todo @@ -28,3 +28,6 @@ !missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound !missing-type! NSOrderedCollectionChange not bound !missing-type! NSOrderedCollectionDifference not bound +## appended from unclassified file +!missing-field! NSProgressFileOperationKindUploading not bound +!missing-field! NSURLUbiquitousItemIsExcludedFromSyncKey not bound diff --git a/tests/xtro-sharpie/tvOS-GameController.todo b/tests/xtro-sharpie/tvOS-GameController.todo new file mode 100644 index 000000000000..dad62fa666fa --- /dev/null +++ b/tests/xtro-sharpie/tvOS-GameController.todo @@ -0,0 +1,16 @@ +!missing-enum! GCDualSenseAdaptiveTriggerMode not bound +!missing-enum! GCDualSenseAdaptiveTriggerStatus not bound +!missing-selector! GCDualSenseAdaptiveTrigger::armPosition not bound +!missing-selector! GCDualSenseAdaptiveTrigger::mode not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeFeedbackWithStartPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeOff not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeVibrationWithStartPosition:amplitude:frequency: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::setModeWeaponWithStartPosition:endPosition:resistiveStrength: not bound +!missing-selector! GCDualSenseAdaptiveTrigger::status not bound +!missing-selector! GCDualSenseGamepad::leftTrigger not bound +!missing-selector! GCDualSenseGamepad::rightTrigger not bound +!missing-selector! GCDualSenseGamepad::touchpadButton not bound +!missing-selector! GCDualSenseGamepad::touchpadPrimary not bound +!missing-selector! GCDualSenseGamepad::touchpadSecondary not bound +!missing-type! GCDualSenseAdaptiveTrigger not bound +!missing-type! GCDualSenseGamepad not bound diff --git a/tests/xtro-sharpie/tvOS-GameKit.todo b/tests/xtro-sharpie/tvOS-GameKit.todo new file mode 100644 index 000000000000..95155b9c2dcb --- /dev/null +++ b/tests/xtro-sharpie/tvOS-GameKit.todo @@ -0,0 +1,7 @@ +!missing-enum! GKFriendsAuthorizationStatus not bound +!missing-enum-value! GKError native value GKErrorFriendListDenied = 102 not bound +!missing-enum-value! GKError native value GKErrorFriendListDescriptionMissing = 100 not bound +!missing-enum-value! GKError native value GKErrorFriendListRestricted = 101 not bound +!missing-selector! GKLocalPlayer::loadFriends: not bound +!missing-selector! GKLocalPlayer::loadFriendsAuthorizationStatus: not bound +!missing-selector! GKLocalPlayer::loadFriendsWithIdentifiers:completionHandler: not bound diff --git a/tests/xtro-sharpie/tvOS-HomeKit.todo b/tests/xtro-sharpie/tvOS-HomeKit.todo new file mode 100644 index 000000000000..1b343e28e170 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-selector! HMCameraSource::aspectRatio not bound diff --git a/tests/xtro-sharpie/tvOS-Intents.todo b/tests/xtro-sharpie/tvOS-Intents.todo new file mode 100644 index 000000000000..cf566d3a8e88 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-Intents.todo @@ -0,0 +1 @@ +!missing-enum-value! INMediaReference native value INMediaReferenceMy = 2 not bound diff --git a/tests/xtro-sharpie/tvOS-MLCompute.todo b/tests/xtro-sharpie/tvOS-MLCompute.todo new file mode 100644 index 000000000000..22549e22966c --- /dev/null +++ b/tests/xtro-sharpie/tvOS-MLCompute.todo @@ -0,0 +1,40 @@ +!missing-enum! MLCComparisonOperation not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeClamp = 20 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeCount = 21 not bound +!missing-enum-value! MLCActivationType native value MLCActivationTypeHardSwish = 19 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationCount = 30 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationDivideNoNaN = 27 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMax = 29 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMin = 28 not bound +!missing-enum-value! MLCArithmeticOperation native value MLCArithmeticOperationMultiplyNoNaN = 26 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAll = 9 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeAny = 8 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeCount = 10 not bound +!missing-enum-value! MLCReductionType native value MLCReductionTypeL1Norm = 7 not bound +!missing-pinvoke! MLCComparisonOperationDebugDescription is not bound +!missing-selector! +MLCActivationLayer::clampLayerWithMinValue:maxValue: not bound +!missing-selector! +MLCActivationLayer::hardSwishLayer not bound +!missing-selector! +MLCComparisonLayer::layerWithOperation: not bound +!missing-selector! +MLCGatherLayer::layerWithDimension: not bound +!missing-selector! +MLCInstanceNormalizationLayer::layerWithFeatureChannelCount:mean:variance:beta:gamma:varianceEpsilon:momentum: not bound +!missing-selector! +MLCReductionLayer::layerWithReductionType:dimensions: not bound +!missing-selector! +MLCScatterLayer::layerWithDimension:reduceType: not bound +!missing-selector! +MLCSelectionLayer::layer not bound +!missing-selector! +MLCTensorData::dataWithBytesNoCopy:length:deallocator: not bound +!missing-selector! MLCComparisonLayer::operation not bound +!missing-selector! MLCGatherLayer::dimension not bound +!missing-selector! MLCGraph::gatherWithDimension:source:indices: not bound +!missing-selector! MLCGraph::scatterWithDimension:source:indices:copyFrom:reduceType: not bound +!missing-selector! MLCGraph::selectWithSources:condition: not bound +!missing-selector! MLCInferenceGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-selector! MLCInstanceNormalizationLayer::mean not bound +!missing-selector! MLCInstanceNormalizationLayer::variance not bound +!missing-selector! MLCReductionLayer::dimensions not bound +!missing-selector! MLCReshapeLayer::shape not bound +!missing-selector! MLCScatterLayer::dimension not bound +!missing-selector! MLCScatterLayer::reduceType not bound +!missing-selector! MLCTrainingGraph::compileWithOptions:device:inputTensors:inputTensorsData: not bound +!missing-type! MLCComparisonLayer not bound +!missing-type! MLCGatherLayer not bound +!missing-type! MLCScatterLayer not bound +!missing-type! MLCSelectionLayer not bound diff --git a/tests/xtro-sharpie/tvOS-MediaPlayer.todo b/tests/xtro-sharpie/tvOS-MediaPlayer.todo new file mode 100644 index 000000000000..1dbf334fd31d --- /dev/null +++ b/tests/xtro-sharpie/tvOS-MediaPlayer.todo @@ -0,0 +1,2 @@ +!missing-field! MPMediaItemPropertyIsPreorder not bound +!missing-selector! MPMediaItem::isPreorder not bound diff --git a/tests/xtro-sharpie/tvOS-UIKit.todo b/tests/xtro-sharpie/tvOS-UIKit.todo index 4b7894a0771c..407d5c6f4703 100644 --- a/tests/xtro-sharpie/tvOS-UIKit.todo +++ b/tests/xtro-sharpie/tvOS-UIKit.todo @@ -16,3 +16,9 @@ !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::snapshotForExpandingParentItemHandler not bound !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willCollapseItemHandler not bound !missing-selector! UICollectionViewDiffableDataSourceSectionSnapshotHandlers::willExpandItemHandler not bound +## appended from unclassified file +!missing-enum! UIListSeparatorVisibility not bound +!missing-enum! UIPrintRenderingQuality not bound +!missing-enum! UISplitViewControllerDisplayModeButtonVisibility not bound +!missing-selector! UISplitViewController::displayModeButtonVisibility not bound +!missing-selector! UISplitViewController::setDisplayModeButtonVisibility: not bound diff --git a/tests/xtro-sharpie/tvOS-VideoToolbox.todo b/tests/xtro-sharpie/tvOS-VideoToolbox.todo new file mode 100644 index 000000000000..c913b2a8b600 --- /dev/null +++ b/tests/xtro-sharpie/tvOS-VideoToolbox.todo @@ -0,0 +1,2 @@ +!missing-field! kVTCompressionPropertyKey_BaseLayerFrameRateFraction not bound +!missing-field! kVTVideoEncoderSpecification_EnableLowLatencyRateControl not bound diff --git a/tests/xtro-sharpie/watchOS-AVFoundation.todo b/tests/xtro-sharpie/watchOS-AVFoundation.todo new file mode 100644 index 000000000000..dd349c3fa223 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-AVFoundation.todo @@ -0,0 +1,61 @@ +!missing-enum! AVAudioSessionInterruptionReason not bound +!missing-enum! AVPlayerInterstitialEventRestrictions not bound +!missing-enum! AVVariantPreferences not bound +!missing-enum-value! AVAudioSessionCategoryOptions native value AVAudioSessionCategoryOptionOverrideMutedMicrophoneInterruption = 128 not bound +!missing-field! AVAudioSessionInterruptionReasonKey not bound +!missing-field! AVPlayerInterstitialEventObserverCurrentEventDidChangeNotification not bound +!missing-field! AVPlayerInterstitialEventObserverEventsDidChangeNotification not bound +!missing-field! AVPlayerWaitingDuringInterstitialEventReason not bound +!missing-pinvoke! AVSampleBufferAttachContentKey is not bound +!missing-protocol-member! AVContentKeyRecipient::contentKeySession:didProvideContentKey: not found +!missing-protocol-member! AVQueuedSampleBufferRendering::hasSufficientMediaDataForReliablePlaybackStart not found +!missing-selector! +AVContentKeySpecifier::contentKeySpecifierForKeySystem:identifier:options: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:date:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::interstitialEventWithPrimaryItem:time:templateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:date:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEvent::playerInterstitialEventWithPrimaryItem:time:interstitialTemplateItems:restrictions:resumptionOffset: not bound +!missing-selector! +AVPlayerInterstitialEventController::interstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventController::playerInterstitialEventControllerWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::interstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! +AVPlayerInterstitialEventObserver::playerInterstitialEventObserverWithPrimaryPlayer: not bound +!missing-selector! AVAudioSession::prefersNoInterruptionsFromSystemAlerts not bound +!missing-selector! AVAudioSession::setPrefersNoInterruptionsFromSystemAlerts:error: not bound +!missing-selector! AVContentKey::contentKeySpecifier not bound +!missing-selector! AVContentKeyRequest::contentKey not bound +!missing-selector! AVContentKeyRequest::contentKeySpecifier not bound +!missing-selector! AVContentKeySpecifier::identifier not bound +!missing-selector! AVContentKeySpecifier::initForKeySystem:identifier:options: not bound +!missing-selector! AVContentKeySpecifier::keySystem not bound +!missing-selector! AVContentKeySpecifier::options not bound +!missing-selector! AVPlayerInterstitialEvent::date not bound +!missing-selector! AVPlayerInterstitialEvent::interstitialTemplateItems not bound +!missing-selector! AVPlayerInterstitialEvent::primaryItem not bound +!missing-selector! AVPlayerInterstitialEvent::restrictions not bound +!missing-selector! AVPlayerInterstitialEvent::resumptionOffset not bound +!missing-selector! AVPlayerInterstitialEvent::templateItems not bound +!missing-selector! AVPlayerInterstitialEvent::time not bound +!missing-selector! AVPlayerInterstitialEventController::cancelCurrentEventWithResumptionOffset: not bound +!missing-selector! AVPlayerInterstitialEventController::events not bound +!missing-selector! AVPlayerInterstitialEventController::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventController::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventController::setEvents: not bound +!missing-selector! AVPlayerInterstitialEventController::setInterstitialEvents: not bound +!missing-selector! AVPlayerInterstitialEventObserver::currentEvent not bound +!missing-selector! AVPlayerInterstitialEventObserver::events not bound +!missing-selector! AVPlayerInterstitialEventObserver::initWithPrimaryPlayer: not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialEvents not bound +!missing-selector! AVPlayerInterstitialEventObserver::interstitialPlayer not bound +!missing-selector! AVPlayerInterstitialEventObserver::primaryPlayer not bound +!missing-selector! AVPlayerItem::automaticallyHandlesInterstitialEvents not bound +!missing-selector! AVPlayerItem::setAutomaticallyHandlesInterstitialEvents: not bound +!missing-selector! AVPlayerItem::setVariantPreferences: not bound +!missing-selector! AVPlayerItem::templatePlayerItem not bound +!missing-selector! AVPlayerItem::variantPreferences not bound +!missing-selector! AVSampleBufferRenderSynchronizer::delaysRateChangeUntilHasSufficientMediaData not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setDelaysRateChangeUntilHasSufficientMediaData: not bound +!missing-selector! AVSampleBufferRenderSynchronizer::setRate:time:atHostTime: not bound +!missing-type! AVContentKey not bound +!missing-type! AVContentKeySpecifier not bound +!missing-type! AVPlayerInterstitialEvent not bound +!missing-type! AVPlayerInterstitialEventController not bound +!missing-type! AVPlayerInterstitialEventObserver not bound diff --git a/tests/xtro-sharpie/watchOS-Foundation.todo b/tests/xtro-sharpie/watchOS-Foundation.todo index 3348f73b0b0f..956cba1f3c48 100644 --- a/tests/xtro-sharpie/watchOS-Foundation.todo +++ b/tests/xtro-sharpie/watchOS-Foundation.todo @@ -28,3 +28,6 @@ !missing-selector! NSOrderedSet::orderedSetByApplyingDifference: not bound !missing-type! NSOrderedCollectionChange not bound !missing-type! NSOrderedCollectionDifference not bound +## appended from unclassified file +!missing-field! NSProgressFileOperationKindUploading not bound +!missing-field! NSURLUbiquitousItemIsExcludedFromSyncKey not bound diff --git a/tests/xtro-sharpie/watchOS-GameKit.todo b/tests/xtro-sharpie/watchOS-GameKit.todo new file mode 100644 index 000000000000..95155b9c2dcb --- /dev/null +++ b/tests/xtro-sharpie/watchOS-GameKit.todo @@ -0,0 +1,7 @@ +!missing-enum! GKFriendsAuthorizationStatus not bound +!missing-enum-value! GKError native value GKErrorFriendListDenied = 102 not bound +!missing-enum-value! GKError native value GKErrorFriendListDescriptionMissing = 100 not bound +!missing-enum-value! GKError native value GKErrorFriendListRestricted = 101 not bound +!missing-selector! GKLocalPlayer::loadFriends: not bound +!missing-selector! GKLocalPlayer::loadFriendsAuthorizationStatus: not bound +!missing-selector! GKLocalPlayer::loadFriendsWithIdentifiers:completionHandler: not bound diff --git a/tests/xtro-sharpie/watchOS-HomeKit.todo b/tests/xtro-sharpie/watchOS-HomeKit.todo new file mode 100644 index 000000000000..1b343e28e170 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-HomeKit.todo @@ -0,0 +1 @@ +!missing-selector! HMCameraSource::aspectRatio not bound diff --git a/tests/xtro-sharpie/watchOS-Intents.todo b/tests/xtro-sharpie/watchOS-Intents.todo new file mode 100644 index 000000000000..f3b05b0f52c5 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-Intents.todo @@ -0,0 +1,14 @@ +!deprecated-attribute-missing! INCallRecord::caller missing a [Deprecated] attribute +!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen: missing a [Deprecated] attribute +!deprecated-attribute-missing! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: missing a [Deprecated] attribute +!extra-designated-initializer! INCallRecord::initWithIdentifier:dateCreated:caller:callRecordType:callCapability:callDuration:unseen:numberOfCalls: is incorrectly decorated with an [DesignatedInitializer] attribute +!missing-enum-value! INMediaReference native value INMediaReferenceMy = 2 not bound +!missing-selector! INCallGroup::groupId not bound +!missing-selector! INCallGroup::groupName not bound +!missing-selector! INCallGroup::initWithGroupName:groupId: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen:numberOfCalls: not bound +!missing-selector! INCallRecord::initWithIdentifier:dateCreated:callRecordType:callCapability:callDuration:unseen:participants:numberOfCalls:isCallerIdBlocked: not bound +!missing-selector! INCallRecord::isCallerIdBlocked not bound +!missing-selector! INCallRecord::participants not bound +!missing-type! INCallGroup not bound diff --git a/tests/xtro-sharpie/watchOS-MediaPlayer.todo b/tests/xtro-sharpie/watchOS-MediaPlayer.todo new file mode 100644 index 000000000000..2b1b52f76021 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-MediaPlayer.todo @@ -0,0 +1 @@ +!missing-field! MPMediaItemPropertyIsPreorder not bound diff --git a/tests/xtro-sharpie/watchOS-PassKit.todo b/tests/xtro-sharpie/watchOS-PassKit.todo new file mode 100644 index 000000000000..b3bbfc5c8ec9 --- /dev/null +++ b/tests/xtro-sharpie/watchOS-PassKit.todo @@ -0,0 +1,2 @@ +!missing-enum! PKRadioTechnology not bound +!missing-field! PKPaymentNetworkMir not bound diff --git a/tools/devops/automation/templates/build/stage.yml b/tools/devops/automation/templates/build/stage.yml index 1788c5c95a84..e66810a92fbc 100644 --- a/tools/devops/automation/templates/build/stage.yml +++ b/tools/devops/automation/templates/build/stage.yml @@ -69,8 +69,9 @@ jobs: name: $(AgentPoolComputed) demands: - Agent.OS -equals Darwin - - Agent.OSVersion -equals 10.15 - - macios_image -equals v1 + - Agent.OSVersion -equals 10.16 + - macios_image -equals v2 + - XcodeChannel -equals Beta workspace: clean: all From 08772c7c6cd4f3e962b61eb1bb97acea59c44ab2 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Wed, 3 Feb 2021 17:21:05 -0500 Subject: [PATCH 02/10] Fix Xcode location and clean exposurenotification --- Make.config | 2 +- tests/xtro-sharpie/iOS-ExposureNotification.ignore | 7 +++++++ tests/xtro-sharpie/iOS-ExposureNotification.todo | 7 ------- 3 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 tests/xtro-sharpie/iOS-ExposureNotification.todo diff --git a/Make.config b/Make.config index 214ec5be1f25..6b6e4a26431f 100644 --- a/Make.config +++ b/Make.config @@ -121,7 +121,7 @@ MACCATALYST_NUGET_VERSION_FULL=$(MACCATALYST_NUGET_VERSION_NO_METADATA)+$(NUGET_ # Xcode version should have both a major and a minor version (even if the minor version is 0) XCODE_VERSION=12.5 XCODE_URL=http://xamarin-storage/bot-provisioning/xcodes/Xcode_12.5_beta.xip -XCODE_DEVELOPER_ROOT=/Applications/Xcode_12.5.0-beta1.app/Contents/Developer +XCODE_DEVELOPER_ROOT=/Applications/Xcode_12.5.0-beta.app/Contents/Developer XCODE_PRODUCT_BUILD_VERSION:=$(shell /usr/libexec/PlistBuddy -c 'Print :ProductBuildVersion' $(XCODE_DEVELOPER_ROOT)/../version.plist) # Mono version embedded in XI/XM (NEEDED_MONO_VERSION/BRANCH) are specified in mk/mono.mk diff --git a/tests/xtro-sharpie/iOS-ExposureNotification.ignore b/tests/xtro-sharpie/iOS-ExposureNotification.ignore index 326df0987277..446e1678c4b0 100644 --- a/tests/xtro-sharpie/iOS-ExposureNotification.ignore +++ b/tests/xtro-sharpie/iOS-ExposureNotification.ignore @@ -121,3 +121,10 @@ !missing-selector! ENManager::setInvalidationHandler: not bound !missing-selector! +ENManager::authorizationStatus not bound !missing-selector! ENManager::exposureNotificationEnabled not bound +!missing-enum! ENActivityFlags not bound +!missing-selector! ENManager::activityHandler not bound +!missing-selector! ENManager::diagnosisKeysAvailableHandler not bound +!missing-selector! ENManager::preAuthorizeDiagnosisKeysWithCompletionHandler: not bound +!missing-selector! ENManager::requestPreAuthorizedDiagnosisKeysWithCompletionHandler: not bound +!missing-selector! ENManager::setActivityHandler: not bound +!missing-selector! ENManager::setDiagnosisKeysAvailableHandler: not bound diff --git a/tests/xtro-sharpie/iOS-ExposureNotification.todo b/tests/xtro-sharpie/iOS-ExposureNotification.todo deleted file mode 100644 index 91e96aa56003..000000000000 --- a/tests/xtro-sharpie/iOS-ExposureNotification.todo +++ /dev/null @@ -1,7 +0,0 @@ -!missing-enum! ENActivityFlags not bound -!missing-selector! ENManager::activityHandler not bound -!missing-selector! ENManager::diagnosisKeysAvailableHandler not bound -!missing-selector! ENManager::preAuthorizeDiagnosisKeysWithCompletionHandler: not bound -!missing-selector! ENManager::requestPreAuthorizedDiagnosisKeysWithCompletionHandler: not bound -!missing-selector! ENManager::setActivityHandler: not bound -!missing-selector! ENManager::setDiagnosisKeysAvailableHandler: not bound From 59d7244ba64a561bd8ba33d6fce5bc7724af584b Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Wed, 3 Feb 2021 21:38:18 -0500 Subject: [PATCH 03/10] Bump maccore to fix mlaunch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New commits in xamarin/maccore: * xamarin/maccore@de616ca53e [mlaunch] Fix dependencies for Xcode 12.5 beta 1 (#2387) * xamarin/maccore@e93375583c [Actions] Fix rebase trigger. * xamarin/maccore@0dfeb85ff6 [CI][VSTS] Add information when the external tool fails. (#2377) * xamarin/maccore@87e165fdbb Remove Vincent as a code owner 😞 (#2368) * xamarin/maccore@55a700bb5b [build] Add /restore to Xamarin.Analysis build (#2366) * xamarin/maccore@2d9f8a9685 Bump to xamarin/xamarin-analysis@95245313 (#2362) Diff: https://github.com/xamarin/maccore/compare/428964bf32f06862eb4209129c6fb5b882c3b9be..de616ca53e22ebea66216374a15b8caf2ca77e3c --- mk/xamarin.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/xamarin.mk b/mk/xamarin.mk index bec859057640..153bb5a5aaa3 100644 --- a/mk/xamarin.mk +++ b/mk/xamarin.mk @@ -7,7 +7,7 @@ MONO_BRANCH := $(shell cd $(MONO_PATH) 2> /dev/null && git symbolic-ref --sho endif ifdef ENABLE_XAMARIN -NEEDED_MACCORE_VERSION := 428964bf32f06862eb4209129c6fb5b882c3b9be +NEEDED_MACCORE_VERSION := de616ca53e22ebea66216374a15b8caf2ca77e3c NEEDED_MACCORE_BRANCH := d16-9 MACCORE_DIRECTORY := maccore From c088ddaa6e9e38da4836b9bbc5e16bd13ea4f259 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Tue, 12 Jan 2021 16:02:01 -0500 Subject: [PATCH 04/10] [msbuild] Simplify resolving xcframeworks (#10376) TD&LR: This PR simplifies how we refer to user frameworks and fixes both warnings and non-optimal (app) output. Much longer story: Additional testing on macOS showed some build-time warnings and an [extra (dupe) file](https://github.com/spouliot/xcframework/commit/a20f8aba419e32e2338cb7c5e4b45d0f38862893#diff-54fd7d9cd5deae57f30195be0a43133eace03c1132401741a317e0ae8d5e13fdR34). Logs shows that we referred to the xcframework several times, where once should have been enough. ``` /native-reference:/Users/poupou/git/spouliot/xcframework/Universal.xcframework /native-reference:/Users/poupou/git/spouliot/xcframework/Universal.xcframework/macos-arm64_x86_64/Universal.framework /native-reference:/Users/poupou/git/spouliot/xcframework/Universal.xcframework/macos-arm64_x86_64/Universal.framework/Universal ``` The first `/native-reference` line produced a warning like: ``` MMP warning MM2006: Native library 'Universal.xcframework' was referenced but could not be found. ``` which makes sense as the tools (both `mmp` and `mtouch`) are not, by design, aware of (unresolved) xcframeworks. Removing `{NativeReference}` from `Xamarin.Mac.Common.targets` (and `Xamarin.iOS.Common.targets`) as it has already been processed by `_ExpandNativeReferences` solves this. The other part of the issue (next two lines) is because `msbuild` does not track changes to directories like it does for files - and the workaround (in `_ExpandNativeReferences`) had to be copied in other places (both XI and XM `_CompileToNative`) and that was not enough (and would eventually need to be duplicated again and again). This could lead to duplicate entries (i msbuild logs) like ``` NativeReferences ../../Universal.xcframework/macos-arm64_x86_64/Universal.framework ../../Universal.xcframework/macos-arm64_x86_64/Universal.framework/Univeral ``` which maps to our extra entries. In order to simplify things we make the `_ExpandNativeReferences` resolve the full path to the library name (not the `.framework` directory) which simplifies both `_CompileToNative` and ensure a single way (at least for `msbuild`) to provide this data to the tools (`mmp` and `mtouch`). Using a file, instead of a directory, is also more consistent for the existing `-framework` option, e.g. we provide the names like: ``` --framework=CoreLocation --framework=ModelIO ``` So adding a full path that include the name is more appropriate, e.g. ``` --framework=/Users/poupou/git/master/xamarin-macios/tests/xharness/tmp-test-dir/xcframework-test760/bin/AnyCPU/Debug/bindings-xcframework-test.resources/XTest.xcframework/ios-i386_x86_64-simulator/XTest.framework/XTest ``` Finally for macOS applications it turns out we were embedding yet another copy of the framework's library inside the `MonoBundle`, which is clearly wrong, because of the last entry. ``` $ l bin/Release/xcf-mac.app/Contents/MonoBundle/Universal -rwxr-xr-x 1 poupou staff 167152 2 Dec 16:16 bin/Release/xcf-mac.app/Contents/MonoBundle/Universal ``` The tool now checks if a provided library is inside a framework (or not) which is a good validation to have anyway when it gets called directly, i.e. not thru `msbuild`. --- .../Xamarin.Mac.Common.targets | 6 +---- .../Tasks/ResolveFrameworksBase.cs | 22 +++++++++---------- .../Tasks/MTouchTaskBase.cs | 10 ++++++--- .../Xamarin.iOS.Common.targets | 6 +---- .../ResolveNativeReferencesTaskTest.cs | 22 +++++++++---------- tools/mmp/driver.cs | 11 +++++++++- 6 files changed, 41 insertions(+), 36 deletions(-) diff --git a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets index b03cf85b4cba..15b4c050f5e7 100644 --- a/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets +++ b/msbuild/Xamarin.Mac.Tasks/Xamarin.Mac.Common.targets @@ -216,10 +216,6 @@ Copyright (C) 2014 Xamarin. All rights reserved. Inputs="@(_CompileToNativeInput);@(_FileNativeReference);@(BundleDependentFiles)" Outputs="$(_AppBundlePath)Contents\MacOS\$(_AppBundleName);$(DeviceSpecificOutputPath)bundler.stamp"> - - <_FrameworkNativeReference Include="@(_FrameworkNativeReference -> '%(Identity)/%(Filename)')" Condition="'%(Extension)' == '.framework' Or '%(Extension)' == '.xcframework'" /> - - - - <_FrameworkNativeReference Include="@(_FrameworkNativeReference -> '%(Identity)/%(Filename)')" Condition="'%(Extension)' == '.framework' Or '%(Extension)' == '.xcframework'" /> - - App.CustomBundleName = v, true }, // Hidden hack for "universal binaries" @@ -1267,6 +1273,10 @@ static void ProcessNativeLibrary (HashSet processed, string library, Lis // If we're passed in a framework, ignore if (App.Frameworks.Contains (library)) return; + // Frameworks don't include the lib name, e.g. `../foo.framework` not `../foo.framework/foo` so check again + string path = Path.GetDirectoryName (library); + if (App.Frameworks.Contains (path)) + return; // We need to check both the name and the shortened name, since we might get passed: // full path - /foo/bar/libFoo.dylib @@ -1289,7 +1299,6 @@ static void ProcessNativeLibrary (HashSet processed, string library, Lis src = monoDirPath; // Now let's check in path with our libName - string path = Path.GetDirectoryName (library); if (src == null && !String.IsNullOrEmpty (path)) { string pathWithLibName = Path.Combine (path, name); if (File.Exists (pathWithLibName)) From b72a7c7e5bb62e32ed690db812720dbf4c59493e Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 13 Jan 2021 14:45:06 +0100 Subject: [PATCH 05/10] Bump system mono to the latest available 2020-02 package. (#10402) This makes xamarin-macios build on Apple Silicon, and also seems to get an updated csc that fixes a problem with nullability warnings/errors. --- Make.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Make.config b/Make.config index 6b6e4a26431f..2d7b4da74c51 100644 --- a/Make.config +++ b/Make.config @@ -129,9 +129,9 @@ include $(TOP)/mk/mono.mk MONO_HASH := $(NEEDED_MONO_VERSION) # Minimum Mono version for building XI/XM -MIN_MONO_VERSION=6.12.0.39 +MIN_MONO_VERSION=6.12.0.114 MAX_MONO_VERSION=6.12.99 -MIN_MONO_URL=https://xamjenkinsartifact.azureedge.net/build-package-osx-mono/2020-02/41/338349925cd380cad2d19c6c15184cf22cf14800/MonoFramework-MDK-6.12.0.39.macos10.xamarin.universal.pkg +MIN_MONO_URL=https://xamjenkinsartifact.azureedge.net/build-package-osx-mono/2020-02/121/5e9cb6d1c1de430965312927d5aed7fcb27bfa73/MonoFramework-MDK-6.12.0.114.macos10.xamarin.universal.pkg # Minimum Mono version for Xamarin.Mac apps using the system mono MIN_XM_MONO_VERSION=6.4.0.94 From a5e5a8a6a196d49db326cc24595a8878ec07b2a9 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Thu, 4 Feb 2021 14:05:06 -0500 Subject: [PATCH 06/10] [tests] Fix mmp-regression build ``` 10:59:46.5383210 Making all in /Users/builder/azdo/_work/1/s/xamarin-macios/tests/mmp-regression 10:59:46.5392610 TargetFrameworkFallbackSearchPaths=/Users/builder/azdo/_work/1/s/xamarin-macios/_mac-build/Library/Frameworks/Mono.framework/External/xbuild-frameworks MSBuildExtensionsPathFallbackPathsOverride=/Users/builder/azdo/_work/1/s/xamarin-macios/_mac-build/Library/Frameworks/Mono.framework/External/xbuild make all 10:59:46.6208220 /Applications/Xcode_12.5.0-beta.app/Contents/Developer/usr/bin/make clean 10:59:46.6956100 /Applications/Xcode_12.5.0-beta.app/Contents/Developer/usr/bin/make build 10:59:46.7422460 GEN dylib/libTest.dylib 10:59:46.8094820 ld: library not found for -lSystem 10:59:46.8097590 clang: error: linker command failed with exit code 1 (use -v to see invocation) 10:59:46.8110310 make[2]: *** [dylib/libTest.dylib] Error 1 10:59:46.8112570 make[1]: *** [run] Error 2 10:59:47.0030120 Process make exited with 2 ``` This happens on BigSur as it does not find the default location anymore... --- tests/mmp-regression/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mmp-regression/Makefile b/tests/mmp-regression/Makefile index 535fad54a8d1..e86b38c80360 100644 --- a/tests/mmp-regression/Makefile +++ b/tests/mmp-regression/Makefile @@ -32,7 +32,7 @@ $(foreach test,$(ALL_TESTS),$(test)/bin): dylib/libTest.dylib $(QF_GEN) if ! $(SYSTEM_XIBUILD) -- $(@D)/$(@D).csproj /p:Configuration=$(CONFIG); then EC=$$?; rm -Rf $@; exit $$EC; fi dylib/libTest.dylib: dylib/src.c - $(QF_GEN) $(XCODE_CC) $< -o$@ -arch x86_64 -shared + $(QF_GEN) $(XCODE_CC) $< -o$@ -arch x86_64 -shared -L /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib build: $(foreach test,$(ALL_TESTS),$(test)/bin) From a143ecd58924c5cc02dc0878b9a3e442fe690db7 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Thu, 4 Feb 2021 14:06:23 -0500 Subject: [PATCH 07/10] [tests] Do not test GKLeaderboardViewController on BigSur The issue is the OS version, not the Xcode version. Update check to skip that test on macOS 11+ --- .../GameKit/LeaderboardViewControllerTest.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/monotouch-test/GameKit/LeaderboardViewControllerTest.cs b/tests/monotouch-test/GameKit/LeaderboardViewControllerTest.cs index b3fa482ce239..7afa7ec19fc4 100644 --- a/tests/monotouch-test/GameKit/LeaderboardViewControllerTest.cs +++ b/tests/monotouch-test/GameKit/LeaderboardViewControllerTest.cs @@ -32,13 +32,11 @@ public class LeaderboardViewControllerTest { public void DefaultCtor () { #if MONOMAC - // For some reason the init method is not allowed on Xcode 12.2 Beta 3 anymore - // but was allowed before that said this class got deprecated in 10.10 so it may now be - // a permanent change. - if (TestRuntime.CheckExactXcodeVersion (12, 2, beta: 3)) + // fails when executed under BigSur - this has been deprecated for a while (even if it remains working elsewhere) + if (TestRuntime.CheckSystemVersion (PlatformName.MacOSX, 11, 0)) Assert.Inconclusive ("'LeaderboardViewControllerTest' the native 'init' method returned nil."); -#endif TestRuntime.AssertSystemVersion (PlatformName.MacOSX, 10, 8, throwIfOtherPlatform: false); +#endif using (var vc = new GKLeaderboardViewController ()) { Assert.Null (vc.Category, "Category"); Assert.Null (vc.Delegate, "Delegate"); From 8598b9761e0a41e3841aa28a8b5505bc118424c9 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Thu, 4 Feb 2021 20:37:43 -0500 Subject: [PATCH 08/10] [tests] Fix MSBuild tests / integration The test cannot work on BigSur since while you can `dlopen` the library you can open `fopen` it as a file (and can't embed it for the test). ``` 12:31:23.9407820 CSC : error CS1566: Error reading resource 'libz.dylib' -- 'Could not find file "/usr/lib/libz.dylib"' [/Users/builder/azdo/_work/1/s/xamarin-macios/tests/msbuild/Xamarin.MacDev.Tests/bin/Debug/net472/tmp-test-dir/msbuild-tests201/XM45Binding.csproj] 12:31:23.9407900 Done Building Project "/Users/builder/azdo/_work/1/s/xamarin-macios/tests/msbuild/Xamarin.MacDev.Tests/bin/Debug/net472/tmp-test-dir/msbuild-tests201/XM45Binding.csproj" (default targets) -- FAILED. ``` --- tests/msbuild/Xamarin.MacDev.Tests/MSBuild-Smoke.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/msbuild/Xamarin.MacDev.Tests/MSBuild-Smoke.cs b/tests/msbuild/Xamarin.MacDev.Tests/MSBuild-Smoke.cs index ffdde04db021..4b3f302bd492 100644 --- a/tests/msbuild/Xamarin.MacDev.Tests/MSBuild-Smoke.cs +++ b/tests/msbuild/Xamarin.MacDev.Tests/MSBuild-Smoke.cs @@ -152,7 +152,8 @@ public void Build_BindingLibrary_SmokeTest (string projectName) [TestCase ("BindingProjectWithNoTag.csproj")] public void BuildingSameBindingProject_TwoTimes_ShallNotInvokeMMPTwoTimes (string project) { - const string nativeRefItemGroup = "DynamicFalse"; + var dylib = Path.GetFullPath (Path.Combine (TI.TestDirectory, "test-libraries", ".libs", "macos", "libtest.dylib")); + string nativeRefItemGroup = $"DynamicFalse"; RunMSBuildTest (tmpDir => { var config = new TI.UnifiedTestConfig (tmpDir) { ProjectName = project, ItemGroup = nativeRefItemGroup }; From f259fe7ba79168e8166391ab925c4aeb45989501 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Fri, 5 Feb 2021 09:44:58 -0500 Subject: [PATCH 09/10] [tests] Fix MTouch tests failures * `nm` changed it's output and test was updated * `clang` linking has a much higher limit for it's command-line length At least it does not seem to be OS specific since both 10.15 and 11.0 returns the same maximum ``` $ getconf ARG_MAX 1048576 ``` --- tests/mtouch/MTouch.cs | 2 +- tests/mtouch/MTouchTool.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/mtouch/MTouch.cs b/tests/mtouch/MTouch.cs index 01c2dd41bd59..da58dd5f47c9 100644 --- a/tests/mtouch/MTouch.cs +++ b/tests/mtouch/MTouch.cs @@ -3848,7 +3848,7 @@ public void ManyBigPInvokes () var tmpdir = Cache.CreateTemporaryDirectory (); var m = Path.Combine (tmpdir, "file.m"); var cs = Path.Combine (tmpdir, "file.cs"); - var functions = 2500; + var functions = 8000; var m_writer = new StringBuilder (); var cs_writer = new StringBuilder ("\n"); cs_writer.AppendLine ("namespace Tester {"); diff --git a/tests/mtouch/MTouchTool.cs b/tests/mtouch/MTouchTool.cs index 48597eb935a6..0da5b8f9dc99 100644 --- a/tests/mtouch/MTouchTool.cs +++ b/tests/mtouch/MTouchTool.cs @@ -861,7 +861,8 @@ public static IEnumerable GetNativeSymbolsInExecutable (string executabl if (v.StartsWith (executable, StringComparison.Ordinal) && v.EndsWith (":", StringComparison.Ordinal)) return false; - if (v == "no symbols") + // nm changed its output on xcode 12.5 (it will fail, on purpose, with earlier versions) + if (v.EndsWith (": no symbols")) return false; return true; From bd41d33360df6dfc88eaf024ab2f0d333580747f Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Fri, 5 Feb 2021 14:09:57 -0500 Subject: [PATCH 10/10] Bump version not to conflict with existing ones from 'main' and small update/opt to test --- Make.versions | 4 ++-- tests/mtouch/MTouchTool.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Make.versions b/Make.versions index 5cee5ec14632..e566ec5c6a12 100644 --- a/Make.versions +++ b/Make.versions @@ -48,8 +48,8 @@ # line changed in git). # -IOS_PACKAGE_VERSION=14.15.0.$(IOS_COMMIT_DISTANCE) -MAC_PACKAGE_VERSION=7.9.0.$(MAC_COMMIT_DISTANCE) +IOS_PACKAGE_VERSION=14.15.1.$(IOS_COMMIT_DISTANCE) +MAC_PACKAGE_VERSION=7.9.1.$(MAC_COMMIT_DISTANCE) # # ** NuGet package version numbers ** diff --git a/tests/mtouch/MTouchTool.cs b/tests/mtouch/MTouchTool.cs index 0da5b8f9dc99..b4d9ff3d6a53 100644 --- a/tests/mtouch/MTouchTool.cs +++ b/tests/mtouch/MTouchTool.cs @@ -862,7 +862,7 @@ public static IEnumerable GetNativeSymbolsInExecutable (string executabl return false; // nm changed its output on xcode 12.5 (it will fail, on purpose, with earlier versions) - if (v.EndsWith (": no symbols")) + if (v.EndsWith (": no symbols", StringComparison.Ordinal)) return false; return true;