Skip to content

Commit 8adf444

Browse files
authored
RHAIENG-287, AIPCC-6072: fix(tests): exclude MPI libraries from unsatisfied dependency checks in CUDA AIPCC test (#2599)
1 parent 205f123 commit 8adf444

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/containers/base_image_test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ def check_elf_file():
117117
if deps.startswith("libtracker-extract.so"):
118118
continue # it's in ../
119119

120+
# AIPCC-6072: Unsatisfied library dependencies in the cuda aipcc image
121+
if deps.startswith("libmpi.so"):
122+
continue # it's in ${MPI_HOME}/lib
123+
if deps.startswith("liboshmem.so"):
124+
continue # it's in ${MPI_HOME}/lib
125+
120126
with subtests.test(f"{dlib=}"):
121127
pytest.fail(f"{dlib=} has unsatisfied dependencies {deps=}")
122128

0 commit comments

Comments
 (0)