change testsuite on all binaries in /usr/lib

This commit is contained in:
Tobias Powalowski 2024-06-13 22:00:29 +02:00
parent 3eb7f49197
commit fb97ea53e3

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); 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