|
From: <sv...@va...> - 2008-01-09 21:03:47
|
Author: sewardj
Date: 2008-01-09 21:03:43 +0000 (Wed, 09 Jan 2008)
New Revision: 7332
Log:
Make a new regtest target, "all-regtest", being the union of "make
regtest" and "make exp-regtest". Then change the nightly build system
to run all-regtest instead of exp-regtest.
Modified:
trunk/Makefile.am
trunk/nightly/bin/nightly
Modified: trunk/Makefile.am
===================================================================
--- trunk/Makefile.am 2008-01-09 18:37:41 UTC (rev 7331)
+++ trunk/Makefile.am 2008-01-09 21:03:43 UTC (rev 7332)
@@ -70,6 +70,8 @@
@PERL@ tests/vg_regtest $(TOOLS)
exp-regtest: check
@PERL@ tests/vg_regtest $(EXP_TOOLS)
+all-regtest: check
+ @PERL@ tests/vg_regtest $(TOOLS) $(EXP_TOOLS)
## Preprend @PERL@ because tests/vg_per isn't executable
perf: check
Modified: trunk/nightly/bin/nightly
===================================================================
--- trunk/nightly/bin/nightly 2008-01-09 18:37:41 UTC (rev 7331)
+++ trunk/nightly/bin/nightly 2008-01-09 21:03:43 UTC (rev 7332)
@@ -97,7 +97,7 @@
\
runcmd $logfile \
"Running regression tests " \
- "cd valgrind && make regtest"
+ "cd valgrind && make all-regtest"
# Grab some indicative text for the short log file -- if the regtests
# succeeded, show their results. If we didn't make it that far, show the
|