test/default/run.sh compat with GNU find

This commit is contained in:
Frank Denis
2022-11-27 22:12:34 +01:00
parent b0a4ef1939
commit d0fa8b4178
+1 -1
View File
@@ -1,6 +1,6 @@
#! /bin/sh
find . -type f -perm +100 -print | grep -v run.sh | sort | while read -r x; do
find . -type f -perm -100 -print | grep -v run.sh | sort | while read -r x; do
echo "[$x]"
if ! "$x"; then
echo "*** [$x] FAILED" >&2