summaryrefslogtreecommitdiff
path: root/app/xauth
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2022-06-25 19:38:16 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2022-06-25 19:38:16 +0000
commitadef56fc3fc93c3ac476f2f1ec727ca359608127 (patch)
tree81cce9f41e1eda297ffade6f83d539af9edd754a /app/xauth
parent167fef9109e7bae48fef4aff6260d217d020f8d6 (diff)
source files do not have the 'x' bit set. Use /bin/sh explicitely
Diffstat (limited to 'app/xauth')
-rwxr-xr-xapp/xauth/tests/test_xauth2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/xauth/tests/test_xauth b/app/xauth/tests/test_xauth
index 3278291cc..981e036e1 100755
--- a/app/xauth/tests/test_xauth
+++ b/app/xauth/tests/test_xauth
@@ -10,7 +10,7 @@ testsrc="${srcdir:-.}"
for script in `ls -1 ${testsrc}/*.script | sort` ; do
base=`basename $script .script`
echo "Testing $base"
- $script > out.stdout 2> out.stderr
+ /bin/sh $script > out.stdout 2> out.stderr
# check stdout for correctness
if [ -f ${testsrc}/$base.stdout ]; then