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 40c9b98Copy full SHA for 40c9b98
tests/integration/test_manylinux.py
@@ -622,8 +622,11 @@ 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(
627
+ (any(f".libs/lib{lib}" in name for name in libraries))
628
+ for lib in ["a", "b", "d"]
629
+ )
630
for name in libraries:
631
with w.open(name) as f:
632
elf = ELFFile(io.BytesIO(f.read()))
0 commit comments