From 1d8ad5dd528676cec06d8cb980f7e09c3aee11f6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 8 Oct 2005 20:43:31 +0000 Subject: [PATCH] Bring report+mail down to the individual directories. git-svn-id: https://svn.dealii.org/trunk@11580 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile | 9 +++++---- tests/Makefile.rules | 6 ++++++ tests/all-headers/Makefile | 5 +++++ 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index c8c4fc8b83..c9d7cc2e1a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -28,10 +28,11 @@ report: compare abort.o cd $$i ; $(MAKE) report ; cd .. ; \ done -report+mail: - @$(MAKE) report | tee testresults - @cat testresults | mail regression-tests@dealii.org - @rm testresults +report+mail: compare abort.o + @for i in base lac fe deal.II multigrid bits all-headers ; do \ + echo =======Report: $$i ======= ; \ + cd $$i ; $(MAKE) report+mail ; cd .. ; \ + done # compilation of tests only, no execution of tests diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 9123152865..3020d569f0 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -124,6 +124,12 @@ report: done +report+mail: + @$(MAKE) report | tee testresults + @cat testresults | mail regression-tests@dealii.org + @rm testresults + + ############################################################ # After all these general rules, here is the target to be # executed by make: for each entry in the list $(tests) diff --git a/tests/all-headers/Makefile b/tests/all-headers/Makefile index ed49ba7c5f..cb3df84b9d 100644 --- a/tests/all-headers/Makefile +++ b/tests/all-headers/Makefile @@ -79,6 +79,11 @@ report: fi ; \ done +report+mail: + @$(MAKE) report | tee testresults + @cat testresults | mail regression-tests@dealii.org + @rm testresults + clean: -rm -f Makefile.dep *.$(OBJEXT) \ -- 2.39.5