Commit b60ce7e5 authored by Jérome Perrin's avatar Jérome Perrin

testing/check_software: ignore liblibgolang for now

liblibgolang from pygolang is used in wendelin and because of a current
limitation of setuptools_dso we don't have rpath on libraries for python
extensions linked with pygolang, but at runtime we import pygolang before and
there's no issue at runtime.

suggested by Kirill on slapos!1007 (comment 136792)
parent c9f58389
......@@ -78,6 +78,9 @@ def checkSoftware(slap, software_url):
# Some libraries might also not be found statically but provided at run time.
missing_lib_allowed_list = set((
# references to liblibgolang.so from projects outside of pygolang are resolved at runtime for now.
# https://github.com/mdavidsaver/setuptools_dso/issues/11#issuecomment-808258994
'liblibgolang',
))
# we also ignore a few patterns for part that are known to be binary distributions,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment