I ended up on this thread while googling an error with a similar message and log.
In my case, I got the error while working on building a library with CocoaPods and the fix was to add XCTest to the list of linked frameworks.
# CombineTestHelpers.podspec
Pod::Spec.new do |s|
# ...
s.framework = 'XCTest'
# ...
end
You can find the full .podspec here.
I'm not sure how relevant this is for this particular issue, but hopefully it can provide some inspiration. 🤞
Topic:
Programming Languages
SubTopic:
Swift
Tags: