summaryrefslogtreecommitdiffstats
path: root/tests/set-interpreter-short.sh
blob: 62990c952f38e31599760aa7f2ca882e6ff470ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh -e

./simple

oldInterpreter=$(../src/patchelf --print-interpreter ./simple)
echo "current interpreter is $oldInterpreter"

rm -rf scratch
mkdir -p scratch

cp simple scratch/
../src/patchelf --set-interpreter /oops scratch/simple

echo "running with missing interpreter..."
if scratch/simple; then
    echo "simple works, but it shouldn't"
    exit 1
fi