1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00
Files
go-chasquid-smtp/test/run.sh
2016-09-12 04:06:56 +01:00

18 lines
171 B
Bash
Executable File

#!/bin/bash
set -e
. $(dirname ${0})/util/lib.sh
init
FAILED=0
for i in t-*; do
echo $i ...
setsid -w $i/run.sh
FAILED=$(( $FAILED + $? ))
echo
done
exit $FAILED