From d4720dcb722215dbdae4749e306c6d3f9a747e83 Mon Sep 17 00:00:00 2001 From: darealshinji Date: Mon, 13 Jul 2015 19:54:30 +0200 Subject: soname test: set an initial DT_SONAME entry --- tests/soname.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/soname.sh b/tests/soname.sh index f81e8ed..4a8fb96 100755 --- a/tests/soname.sh +++ b/tests/soname.sh @@ -6,13 +6,22 @@ mkdir -p ${SCRATCH} cp libsimple.so ${SCRATCH}/ -# print and set DT_SONAME +# set an initial DT_SONAME entry +../src/patchelf --set-soname libsimple.so.1.0 ${SCRATCH}/libsimple.so +newSoname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so) +if test "$newSoname" != libsimple.so.1.0; then + echo "failed --set-soname test. Expected newSoname: libsimple.so.1.0, got: $newSoname" + exit 1 +fi + +# print DT_SONAME soname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so) if test "$soname" != libsimple.so.1.0; then echo "failed --print-soname test. Expected soname: libsimple.so.1.0, got: $soname" exit 1 fi +# replace DT_SONAME entry ../src/patchelf --set-soname libsimple.so.1.1 ${SCRATCH}/libsimple.so newSoname=$(../src/patchelf --print-soname ${SCRATCH}/libsimple.so) if test "$newSoname" != libsimple.so.1.1; then -- cgit v0.12