source files do not have the 'x' bit set. Use /bin/sh explicitely

pull/1/head
matthieu 2022-06-25 19:38:15 +00:00
parent b7f211187b
commit 62bcd22490
1 changed files with 1 additions and 1 deletions

View File

@ -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