MeshTalos-Client/managed_components/espressif__libsodium/libsodium/test/default/run.sh
2025-12-03 14:20:11 +08:00

9 lines
175 B
Bash

#! /bin/sh
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
exit 1
fi
done