|
From: <sv...@va...> - 2009-06-04 01:01:56
|
Author: njn
Date: 2009-06-04 02:01:47 +0100 (Thu, 04 Jun 2009)
New Revision: 10236
Log:
Two tweaks:
- Install in $DIR/valgrind/Inst/ rather than $DIR/Inst. Just a bit neater.
- Run "make regtest" instead of "perl tests/vg_regtest --all", because we
might not want to run all tests (eg. we don't on Darwin at the moment).
Modified:
trunk/nightly/bin/nightly
Modified: trunk/nightly/bin/nightly
===================================================================
--- trunk/nightly/bin/nightly 2009-06-03 20:05:00 UTC (rev 10235)
+++ trunk/nightly/bin/nightly 2009-06-04 01:01:47 UTC (rev 10236)
@@ -66,7 +66,7 @@
cd $ABT_TOP
# Clean up output files produced by a previous run.
-rm -rf diffs diff.short final Inst new.short new.verbose old.short old.verbose
+rm -rf diffs diff.short final new.short new.verbose old.short old.verbose
rm -rf sendmail.log unchanged.log valgrind
# Setup any relevant environment variables from conf/<tag>.conf.
@@ -78,7 +78,7 @@
ABT_EVAL="eval"
fi
if [ "${ABT_RUN_REGTEST}" = "" ]; then
- ABT_RUN_REGTEST="cd valgrind && perl tests/vg_regtest --all"
+ ABT_RUN_REGTEST="cd valgrind && make regtest"
fi
@@ -122,7 +122,7 @@
\
runcmd $logfile \
"Configuring valgrind " \
- "cd valgrind && ./autogen.sh && ./configure --prefix=`pwd`/Inst ${ABT_CONFIGURE_OPTIONS}" && \
+ "cd valgrind && ./autogen.sh && ./configure --prefix=`pwd`/valgrind/Inst ${ABT_CONFIGURE_OPTIONS}" && \
\
runcmd $logfile \
"Building valgrind " \
|