shortened time out by 3h (gives up at 12:00h now).
test should be finished by 10:00h usually.
#/!bin/bash
ISATOOL=${ISATOOL:-isatool}
type -p "$ISATOOL" >/dev/null || { echo "isatool not found!" >&2; exit 2; }
for FILE in $(find . -name IsaMakefile -print)
do
DIR=$(dirname "$FILE")
echo "Entering $DIR ..."
( cd "$DIR"; $ISATOOL make "$@"; )
done