-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from daa/support-compiled-cffi-pypy-extensions
Added support for compiled cffi pypy extensions, fixes #93
- Loading branch information
Showing
4 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from auditwheel.wheel_abi import analyze_wheel_abi | ||
|
||
|
||
def test_analyze_wheel_abi_pypy_cffi(): | ||
winfo = analyze_wheel_abi( | ||
'tests/python_snappy-0.5.2-pp260-pypy_41-linux_x86_64.whl') | ||
external_libs = winfo.external_refs['manylinux1_x86_64']['libs'] | ||
assert len(external_libs) > 0 | ||
assert set(external_libs) == {'libsnappy.so.1'} |