summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am2
-rwxr-xr-xtests/set-interpreter-short.sh (renamed from tests/set-interpreter.sh)4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 22f18c4..89fd8a7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,6 +1,6 @@
check_PROGRAMS = main simple
-TESTS = plain-run.sh shrink.sh set-interpreter.sh $(XFAIL_TESTS) # set-rpath.sh
+TESTS = plain-run.sh shrink.sh set-interpreter-short.sh $(XFAIL_TESTS) # set-rpath.sh
XFAIL_TESTS = plain-fail.sh
diff --git a/tests/set-interpreter.sh b/tests/set-interpreter-short.sh
index 5d8a4e9..bab1184 100755
--- a/tests/set-interpreter.sh
+++ b/tests/set-interpreter-short.sh
@@ -9,7 +9,7 @@ rm -rf scratch
mkdir -p scratch
cp simple scratch/
-../src/patchelf --interpreter $(pwd)/scratch/interpreter scratch/simple
+../src/patchelf --interpreter $(pwd)/scratch/i scratch/simple
echo "running with missing interpreter..."
if scratch/simple; then
@@ -18,5 +18,5 @@ if scratch/simple; then
fi
echo "running with new interpreter..."
-ln -s "$oldInterpreter" scratch/interpreter
+ln -s "$oldInterpreter" scratch/i
scratch/simple