summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-11 07:24:56 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:46 -0400
commitf5d30696b2ad58b42b8640cfc6ac26a77963b675 (patch)
tree27c449f2018975a4e7f75cf1b7a7719aaf70065e
parentdfcda6c709eb87eaea52c0f7916cb72334ff3db2 (diff)
downloadledger-f5d30696b2ad58b42b8640cfc6ac26a77963b675.tar.gz
ledger-f5d30696b2ad58b42b8640cfc6ac26a77963b675.tar.bz2
ledger-f5d30696b2ad58b42b8640cfc6ac26a77963b675.zip
Fixed verify.sh
-rwxr-xr-xrun_verify.sh15
-rwxr-xr-xverify.sh12
2 files changed, 26 insertions, 1 deletions
diff --git a/run_verify.sh b/run_verify.sh
new file mode 100755
index 00000000..743d8083
--- /dev/null
+++ b/run_verify.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+SRCDIR=$(dirname $0)
+
+if [ -n "$1" -a -d "$1" ]; then
+ TMPDIR="$1"
+else
+ TMPDIR=/tmp
+fi
+
+cd $TMPDIR || exit 1
+
+cp -p "$SRCDIR"/verify.sh . || exit 1
+
+./verify.sh > verify.out 2>&1 || (cat verify.out; exit 1)
diff --git a/verify.sh b/verify.sh
index aedc3fcf..2caa7110 100755
--- a/verify.sh
+++ b/verify.sh
@@ -1,12 +1,20 @@
#!/bin/bash
+# This script can be from cron to regularly verify that Ledger is
+# sane. Such a cron entry might look like this, assuming you keep a
+# recent working tree in ~/src/ledger.
+#
+# 0 0 * * * $HOME/src/ledger/run_verify.sh /tmp
+
MY_CPPFLAGS="-I/usr/local/include -I/usr/local/include/boost -I/sw/include"
MY_LDFLAGS="-L/usr/local/lib -L/sw/lib"
# Setup the temporary directory where all these copies are ledger are
# going to be built. Remove it if it's already there.
-if [ -d $HOME/tmp ]; then
+if [ -n "$1" -a -d "$1" ]; then
+ TMPDIR="$1"
+elif [ -d $HOME/tmp ]; then
TMPDIR=$HOME/tmp
else
TMPDIR=/tmp
@@ -61,6 +69,7 @@ function dup_working_tree() {
# is maintained in the repository.
function build_distcheck_from_scratch() {
+ cd $TMPDIR/ledger || exit 1
dup_working_tree distcheck_scratch || exit 1
cd distcheck_scratch || exit 1
./acprep --local || exit 1
@@ -68,6 +77,7 @@ function build_distcheck_from_scratch() {
}
function build_distcheck_from_distrib() {
+ cd $TMPDIR/ledger || exit 1
dup_working_tree distcheck_distrib || exit 1
cd distcheck_distrib || exit 1
./configure CPPFLAGS="$MY_CPPFLAGS" LDFLAGS="$MY_LDFLAGS" || exit 1