We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8cdf8f commit d5d4ebfCopy full SHA for d5d4ebf
tests/integration/test_manylinux.py
@@ -622,8 +622,8 @@ def test_rpath(
622
libraries = tuple(
623
name for name in w.namelist() if "testrpath.libs/lib" in name
624
)
625
- assert len(libraries) == 2
626
- assert any(".libs/liba" in name for name in libraries)
+ assert len(libraries) == 3
+ assert all((any(f".libs/lib{lib}" in name for name in libraries)) for lib in ["a", "b", "d"])
627
for name in libraries:
628
with w.open(name) as f:
629
elf = ELFFile(io.BytesIO(f.read()))
0 commit comments