mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:29:12 +00:00
14 lines
176 B
Bash
Executable File
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
|