Files
photoview/scripts/test_all.sh
2024-11-02 17:05:29 +01:00

14 lines
176 B
Bash
Executable File

#!/bin/sh
set -eu
for test in $(dirname $0)/test_*
do
if [ "${test}" != "${test%%/scripts/test_all.sh}" ]
then
continue
fi
echo Running ${test}...
${test}
done