svn path=/trunk/boinc/; revision=1595
This commit is contained in:
Karl Chen 2003-06-26 01:24:53 +00:00
parent 9f64183c2b
commit b9589f4247
2 changed files with 43 additions and 0 deletions

View File

@ -5063,3 +5063,9 @@ Karl 2003/06/25
test_backend.py
test_concat.py
test_uc.py
Karl 2003/06/25
- created a script to automatically run make all, check, distcheck from a
cronjob - complains if anything fails.
./testbase (new)

37
testbase Executable file
View File

@ -0,0 +1,37 @@
#!/bin/sh
## $Id$
# Automate a clean check out, make all, check, distcheck. On error, complain
# to stdout and return 1. Suitable for a cron job.
CHECKOUT="CVSROOT=/disks/milkyway/a/users/anderson/seti/cvsroot cvs co boinc"
TMPDIR=/tmp/testbase
die()
{
echo "$1"
[ "$2" ] && cat "$2"
exit 1
}
reqeval()
{
eval "$1" || die "error executing: $1"
}
reqeval_log()
{
eval "$1" > $2 2>&1 || die "error executing: $1" $2
}
reqeval "rm -rf $TMPDIR"
reqeval "mkdir -p $TMPDIR"
reqeval "cd $TMPDIR"
reqeval_log "$CHECKOUT" checkout.log
reqeval "cd boinc"
reqeval_log "./configure" configure.log
reqeval_log "make all" make_all.log
reqeval_log "make check" make_check.log
reqeval_log "make distcheck" make_distcheck.log