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 205f123 commit 8adf444Copy full SHA for 8adf444
tests/containers/base_image_test.py
@@ -117,6 +117,12 @@ def check_elf_file():
117
if deps.startswith("libtracker-extract.so"):
118
continue # it's in ../
119
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
125
+
126
with subtests.test(f"{dlib=}"):
127
pytest.fail(f"{dlib=} has unsatisfied dependencies {deps=}")
128
0 commit comments