tests: adjust shell syntax that breaks AIX /bin/sh

* find/testsuite/find.gnu/execdir-multiple.exp: Move the 'do' of a for
loop to the same line so AIX doesn't fail.
This commit is contained in:
Collin Funk 2025-01-25 21:53:17 -08:00 committed by Bernhard Voelker
parent e5d6eb919b
commit faa1301368

View File

@ -22,8 +22,7 @@ set -e
here=`pwd`
d=`basename $here`
for arg;
do
for arg; do
echo "$d" "$arg"
done | LC_ALL=C sort
}