summaryrefslogtreecommitdiffstats
path: root/tests/set-interpreter-short.sh
blob: 80d3d0197ed05645e152854487d8a87336faf84b (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 --interpreter /oops scratch/simple

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