From 33009993176d923e23ff70414197539774e44c3a Mon Sep 17 00:00:00 2001 From: Ovidiu Panait Date: Sat, 24 Jul 2021 18:00:55 +0300 Subject: tests: plain-needed.sh: add tescases for --add-needed-/--remove-needed Signed-off-by: Ovidiu Panait --- tests/plain-needed.sh | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/plain-needed.sh b/tests/plain-needed.sh index 36267fb..8967303 100755 --- a/tests/plain-needed.sh +++ b/tests/plain-needed.sh @@ -1,4 +1,25 @@ #! /bin/sh set -e + +SCRATCH=scratch/$(basename $0 .sh) +MAIN_ELF="${SCRATCH}/main" + +PATCHELF="../src/patchelf" + +rm -rf ${SCRATCH} +mkdir -p ${SCRATCH} +cp main ${SCRATCH}/ + echo "Confirming main requires libfoo" -../src/patchelf --print-needed main | grep -q libfoo.so +${PATCHELF} --print-needed "${MAIN_ELF}" | grep -q libfoo.so + +echo "Testing --add-needed functionality" +${PATCHELF} --add-needed bar.so "${MAIN_ELF}" +${PATCHELF} --print-needed "${MAIN_ELF}" | grep -q bar.so + +echo "Testing --remove-needed functionality" +${PATCHELF} --remove-needed bar.so "${MAIN_ELF}" +if ${PATCHELF} --print-needed "${MAIN_ELF}" | grep -q bar.so; then + echo "ERROR: --remove-needed did not eliminate bar.so!" + exit 1 +fi -- cgit v1.2.1