From 6df1bfbbaf1a877073e59803aebe40a4b255607e Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 13 Jun 2024 22:09:57 +0200 Subject: [PATCH] change testsuite on all binaries in /usr/lib --- usr/bin/archboot-testsuite.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index c8e11d657..704e72106 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -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