zoneminder/utils/travis/run-tests.sh

19 lines
272 B
Bash
Raw Normal View History

2014-06-27 20:00:49 +08:00
#!/bin/bash
set -e
set -o pipefail
with_timestamps() {
while read -r line; do
echo -e "$(date +%T)\t$line";
done
}
run_tests() {
mysql -uzmuser -pzmpass zm < db/test.monitor.sql
sudo zmpkg.pl start
sudo zmfilter.pl -f purgewhenfull
}
run_tests | with_timestamps