-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ios] [carthage]unit tests do not run when Fuzzer's framework binary from carthage is linked to the test target #7
Comments
In my configuration the entire app is linked to the test target. |
We also need to check if the "binary from carthage" approach works for library tests. In this case the test target has a dependency on
|
I've just stumbled upon this and found something that might be a culprit. $ otool -L Carthage/Build/iOS/Fuzzer.framework/Fuzzer
Carthage/Build/iOS/Fuzzer.framework/Fuzzer:
/Library/Frameworks/Fuzzer.framework/Fuzzer (compatibility version 0.0.0, current version 0.0.0)
... $ otool -L Carthage/Build/iOS/Cuckoo.framework/Cuckoo
Carthage/Build/iOS/Cuckoo.framework/Cuckoo:
@rpath/Cuckoo.framework/Cuckoo (compatibility version 1.0.0, current version 1.0.0)
... Note that Fuzzer has an absolute install name, while Cuckoo (used just as an example of a Carthage-built framework that works) uses |
@nikolaykasyanov , sure. I'll try these days. |
I'm getting the error below :
The tests run properly when
Fuzzer
is added as a sub-project and built from source.The text was updated successfully, but these errors were encountered: