diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-06-04 01:01:47 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-06-04 01:01:47 +0000 |
commit | 8820352c211fe59d691e8e57e0092a8310bba9c3 (patch) | |
tree | 9aaeb16e116941c8c2f0db2196ca4a82ca227b6b /nightly | |
parent | ee9d8c0f8f619509345743d21565c84c260c451e (diff) |
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).
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10236 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/bin/nightly | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nightly/bin/nightly b/nightly/bin/nightly index 8496da87..4772f8f4 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -66,7 +66,7 @@ svn_new_date=`date --date=today +%Y-%m-%dT%H:%M:%S` 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 @@ if [ "${ABT_EVAL}" = "" ]; then 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 @@ for logfile in old new ; do \ 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 " \ |