Commit 8a3c8aa3 authored by Jérome Perrin's avatar Jérome Perrin

testing/testcase: ignore gfortran.so in ldd check

the rpath we set in LDFLAGS is not honored here, but we can ignore this
as rpath is needed on executables and not important on shared objects.

libgfortran.so is a shared object that happens to be executable, so it
appears in our ldd check, but we are not executing it directly so it
should be OK.
parent 9ee14cb4
......@@ -200,9 +200,12 @@ def checkSoftware(slap, software_url):
# nss is not a binary distribution, but for some reason it has invalid rpath, but it does
# not seem to be a problem in our use cases.
'*/parts/nss/*',
# npm packages containing binaries
'*/node_modules/phantomjs*/*',
'*/grafana/tools/phantomjs/*',
'*/node_modules/puppeteer/*',
# gcc's gfortran runtime is linked against libz and ignores rpath
'*/libgfortran.so*',
# left over of compilation failures
'*/*__compile__/*',
))
......
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