Skip to content

Commit 40c9b98

Browse files
committed
fix result
1 parent c8cdf8f commit 40c9b98

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/integration/test_manylinux.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,11 @@ def test_rpath(
622622
libraries = tuple(
623623
name for name in w.namelist() if "testrpath.libs/lib" in name
624624
)
625-
assert len(libraries) == 2
626-
assert any(".libs/liba" in name for name in libraries)
625+
assert len(libraries) == 3
626+
assert all(
627+
(any(f".libs/lib{lib}" in name for name in libraries))
628+
for lib in ["a", "b", "d"]
629+
)
627630
for name in libraries:
628631
with w.open(name) as f:
629632
elf = ELFFile(io.BytesIO(f.read()))

0 commit comments

Comments
 (0)