3 YESTERDAY=`date -d yesterday +%Y%m%d`
4 TMPDIRNAME=.__${TODAY}_crontab
5 CVSROOT=":ext:$USER@marcello.cs.unibo.it:/home/faculty/PROJECTS/cvs/helm"
6 SHELLTIME2CENTSPHP=helm/matita/scripts/shell_time2cents.php
7 SHELLADDERPHP=helm/matita/scripts/shell_adder.php
8 COMMONPHP=helm/matita/scripts/public_html/common.php
14 cvs -d $CVSROOT co helm/matita/scripts 1>/dev/null 2>/dev/null
15 helm/matita/scripts/profile_cvs.sh 2> LOG
17 MARK=`echo "select distinct mark from bench where mark like '$TODAY%' order by mark" | mysql -u helm matita | tail -n 1`
18 LASTMARK=`echo "select distinct mark from bench where mark like '$YESTERDAY%' order by mark" | mysql -u helm matita | tail -n 1`
20 if [ -z "$MARK" ]; then
21 echo "No benchmark records for $TODAY"
25 if [ -z "$LASTMARK" ]; then
26 echo "No benchmark records for $YESTERDAY"
30 CUR_TIME=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select SEC_TO_TIME(SUM(TIME_TO_SEC(time))) from bench where mark = \"$MARK\" group by mark;"`
31 OLD_TIME=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select SEC_TO_TIME(SUM(TIME_TO_SEC(time))) from bench where mark = \"$LASTMARK\" group by mark;"`
33 CUR_CENTS=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLTIME2CENTSPHP -- $COMMONPHP $CUR_TIME`
34 OLD_CENTS=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLTIME2CENTSPHP -- $COMMONPHP $OLD_TIME`
36 ((DELTA=$CUR_CENTS-$OLD_CENTS))
37 if [ $DELTA -lt 0 ]; then
41 ((PERC=$PERC / $OLD_CENTS))
43 if [ $PERC -ge 5 ]; then
46 http://mowgli.cs.unibo.it/~tassi/bench.php
48 PERFORMANCE LOSS DETECTED (MARK $MARK vs MARK $LASTMARK)
55 CUR_FAIL=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select count(distinct test) from bench where mark = \"$MARK\" and result = 'fail';"`
56 OLD_FAIL=`/usr/bin/php4 -c /etc/php4/apache/php.ini -f $SHELLADDERPHP -- $COMMONPHP "select count(distinct test) from bench where mark = \"$LASTMARK\" and result = 'fail';"`
58 if [ $CUR_FAIL -gt $OLD_FAIL ]; then
61 http://mowgli.cs.unibo.it/~tassi/bench.php
63 MORE BROKEN TESTS DETECTED (MARK $MARK vs MARK $LASTMARK)
65 `echo "select distinct test from bench where mark = \"$MARK\" and result = 'fail';" | mysql -u helm -h mowgli.cs.unibo.it matita`
67 `echo "select distinct test from bench where mark = \"$LASTMARK\" and result = 'fail';" | mysql -u helm -h mowgli.cs.unibo.it matita`