From 62bcd224905ec4cbfffba78bf552e91464d6ae1a Mon Sep 17 00:00:00 2001 From: matthieu Date: Sat, 25 Jun 2022 19:38:15 +0000 Subject: [PATCH] source files do not have the 'x' bit set. Use /bin/sh explicitely --- app/xauth/tests/test_xauth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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