src/utils/qa/weeklybld/doHgTablesTestRobot.csh 1.9

1.9 2009/09/30 04:34:31 galt
tidying up
Index: src/utils/qa/weeklybld/doHgTablesTestRobot.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/weeklybld/doHgTablesTestRobot.csh,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/utils/qa/weeklybld/doHgTablesTestRobot.csh	27 Aug 2008 19:25:30 -0000	1.8
+++ src/utils/qa/weeklybld/doHgTablesTestRobot.csh	30 Sep 2009 04:34:31 -0000	1.9
@@ -1,32 +1,31 @@
 #!/bin/tcsh
 cd $WEEKLYBLD
 if ( "$HOST" != "hgwbeta" ) then
  echo "error: doHgTablesTestRobot.csh must be executed from hgwbeta!"
  exit 1
 endif
 
 cd $BUILDDIR/v${BRANCHNN}_branch/kent/src/hg/hgTablesTest
 make 
 cd $WEEKLYBLD
+
 $HOME/bin/$MACHTYPE/hgTablesTest hgwbeta.cse.ucsc.edu/cgi-bin/hgTables ./logs/hgTables-v${BRANCHNN}.log
 
 # creates hgTables.log - look for unusual errors
 
 #-- to check for errors: 
 set res = `cat ./logs/hgTables-v${BRANCHNN}.log | egrep "Total" | egrep "0 soft errors,  0 hard errors"`
 set res2 = `cat ./logs/hgTables-v${BRANCHNN}.log | egrep "Total"`
 
 set wc = `echo "$res" | wc -w` 
 if ( "$wc" == "0" ) then
  echo "errs found:"
  echo "$res2"
-# echo "$res2" | mail -s "'Errors in hgTablesTestRobot on $HOST'" $USER hartera galt kuhn kent ann
  echo "$res2" | mail -s "'Errors in hgTablesTestRobot on $HOST'" $USER ann rhead
  exit 1
 endif
 #
 echo Done.
-#echo "$res2" | mail -s "'v${BRANCHNN} hgTablesTest robot done successfully on $HOST.'" $USER hartera galt kuhn kent ann
 echo "$res2" | mail -s "'v${BRANCHNN} hgTablesTest robot done successfully on $HOST.'" $USER ann rhead
 exit 0