change testsuite on all binaries in /usr/lib

This commit is contained in:
Tobias Powalowski 2024-06-13 22:09:57 +02:00
parent fb97ea53e3
commit 6df1bfbbaf

View file

@ -43,7 +43,7 @@ for i in /usr/bin/*; do
done
_result bin-binary-error.txt
_run_test "ldd on executables in /usr/lib"
for i in $(find /usr/lib -executable -type f); do
for i in $(find /usr/lib -executable -type f | grep -v '.so$'); do
if ldd "${i}" 2>"${_NO_LOG}" | grep -q 'not found'; then
echo "${i}" >>lib-binary-error.txt
ldd "${i}" | grep 'not found' >>lib-binary-error.txt