#!/bin/bash # (C)2009 DatuX - Released under GPL # Generic testlibary. Include deze in je test scripts source default.conf || exit 1 source sshtestlib || exit 1 source scctestlib || exit 1 source webtestlib || exit 1 source nettestlib || exit 1 source Xtestlib || exit 1 source asterisktestlib || exit 1 function pausetest() { echo -e "\e[1;32m### pause: $DESCRIPTION1 \e[0m" >&2 echo "Sleeping $1..." sleep $1 || exit 1 DESCRIPTION1= } function error() { echo -e "\e[1;31m### $1\e[0m" >&2 } function info() { echo -e "\e[1;32m### $1\e[0m" >&2 }