git » chasquid » smarthost » tree

[smarthost] / test / run.sh

#!/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