summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@debian.org>2016-02-29 20:29:35 (GMT)
committerFelipe Sateler <fsateler@debian.org>2016-02-29 20:38:07 (GMT)
commitbb04c06a661d3ae82974803fad13c4f68ad39e4d (patch)
treeef07651b730471903699ee9c12e1ba2cd51d257c /tests
parent44b7f9583ffe0ee09c4da8bd996ef9a6a0017e1a (diff)
downloadpatchelf-bb04c06a661d3ae82974803fad13c4f68ad39e4d.zip
patchelf-bb04c06a661d3ae82974803fad13c4f68ad39e4d.tar.gz
patchelf-bb04c06a661d3ae82974803fad13c4f68ad39e4d.tar.bz2
no-rpath-prebuild: force pagesize to 4096 on prebuilt binaries
They all have that page size, and the host-detected one might be different.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/no-rpath-prebuild.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/no-rpath-prebuild.sh b/tests/no-rpath-prebuild.sh
index d059dda..aa27b7a 100755
--- a/tests/no-rpath-prebuild.sh
+++ b/tests/no-rpath-prebuild.sh
@@ -1,6 +1,7 @@
#! /bin/sh -e
set -x
ARCH="$1"
+PAGESIZE=4096
if [ -z "$ARCH" ]; then
ARCH=$(basename $0 .sh | sed -e 's/.*-//')
@@ -25,13 +26,13 @@ mkdir -p ${SCRATCH}
cp $no_rpath_bin ${SCRATCH}/no-rpath
-oldRPath=$(../src/patchelf --print-rpath ${SCRATCH}/no-rpath)
+oldRPath=$(../src/patchelf --page-size ${PAGESIZE} --print-rpath ${SCRATCH}/no-rpath)
if test -n "$oldRPath"; then exit 1; fi
-../src/patchelf \
- --set-interpreter "$(../src/patchelf --print-interpreter ../src/patchelf)" \
+../src/patchelf --page-size ${PAGESIZE} \
+ --set-interpreter "$(../src/patchelf --page-size ${PAGESIZE} --print-interpreter ../src/patchelf)" \
--set-rpath /foo:/bar:/xxxxxxxxxxxxxxx ${SCRATCH}/no-rpath
-newRPath=$(../src/patchelf --print-rpath ${SCRATCH}/no-rpath)
+newRPath=$(../src/patchelf --page-size ${PAGESIZE} --print-rpath ${SCRATCH}/no-rpath)
if ! echo "$newRPath" | grep -q '/foo:/bar'; then
echo "incomplete RPATH"
exit 1