Files
patchelf/tests/set-interpreter-long.sh
2005-10-11 13:05:08 +00:00

24 lines
606 B
Bash
Executable File

#! /bin/sh -e
./simple
oldInterpreter=$(../src/patchelf --print-interpreter ./simple)
echo "current interpreter is $oldInterpreter"
rm -rf scratch
mkdir -p scratch
newInterpreter=$(pwd)/scratch/iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii
cp simple scratch/
../src/patchelf --set-interpreter "$newInterpreter" scratch/simple
echo "running with missing interpreter..."
if scratch/simple; then
echo "simple works, but it shouldn't"
exit 1
fi
echo "running with new interpreter..."
ln -s "$oldInterpreter" "$newInterpreter"
scratch/simple