Load host FFI libraries for Mac Catalyst tests - #11
Merged
Conversation
This was referenced Aug 18, 2026
marcprux
approved these changes
Aug 19, 2026
marcprux
left a comment
Member
There was a problem hiding this comment.
Looks good. I presume it is expected to be on the user to manually set the correct SKIP_FFI_LIBRARY_PATH environment in their testing?
Contributor
Author
It can technically be set manually by the user, but it’s primarily intended as an internal environment variable. The corresponding setup is part of skiptools/skip#724, where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds support for loading macOS host FFI dylibs during Robolectric test runs launched from Mac Catalyst XCSkipTests.
Since Mac Catalyst test bundles cannot provide native libraries directly to the macOS JVM used by Robolectric, the harness pass a host library directory via
SKIP_FFI_LIBRARY_PATH, and skip-ffi uses that path before falling back to the existing behavior.Related PRs:
Thank you for contributing to the Skip project! Please use this space to describe your change and add any labels (bug, enhancement, documentation, etc.) to help categorize your contribution.
Please review the contribution guide at https://skip.dev/docs/contributing/ for advice and guidance on making high-quality PRs.
Skip Pull Request Checklist:
swift testAI was used to help identify the Catalyst/Robolectric host-library issue and draft the changes. Afterwards, I manually reviewed the code and verified the affected XCSkipTests from a Mac Catalyst test target.