From 1e888cfd02edbcd74fc933ad222cdb7bb276c76a Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Wed, 9 Jan 2008 21:03:43 +0000 Subject: [PATCH] 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. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7332 --- Makefile.am | 2 ++ nightly/bin/nightly | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e6d735f0b4..4773302591 100644 --- a/Makefile.am +++ b/Makefile.am @@ -70,6 +70,8 @@ regtest: check @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 diff --git a/nightly/bin/nightly b/nightly/bin/nightly index 25830bade9..37da02b4ff 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -97,7 +97,7 @@ for logfile in old new ; do \ 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 -- 2.47.3