summaryrefslogtreecommitdiff
path: root/t/Makefile
diff options
context:
space:
mode:
authorSverre Rabbelier <srabbelier@gmail.com>2008-06-08 16:04:35 +0200
committerJunio C Hamano <gitster@pobox.com>2008-06-08 15:08:19 -0700
commitf8d5ffc2c7c002cebb8842afcf58cbd4cea481b8 (patch)
tree39cf9a10d9f47a05e103cbd33e5d21fdf287b596 /t/Makefile
parent0a392cb8cb4df41a82ac75e1052587b9a2c6f393 (diff)
downloadgit-f8d5ffc2c7c002cebb8842afcf58cbd4cea481b8.tar.gz
Hook up the result aggregation in the test makefile.
This patch makes 'make' output the aggregated results at the end of each build. The 'git-test-result' file is removed both before and after each build. Signed-off-by: Sverre Rabbelier <srabbelier@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/Makefile')
-rw-r--r--t/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/t/Makefile b/t/Makefile
index dfa90ace1a..a778865ae7 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -14,18 +14,24 @@ SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
TSVN = $(wildcard t91[0-9][0-9]-*.sh)
-all: $(T) clean
+all: pre-clean $(T) aggregate-results clean
$(T):
@echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
+pre-clean:
+ $(RM) -r test-results
+
clean:
$(RM) -r 'trash directory' test-results
+aggregate-results:
+ ./aggregate-results.sh test-results/t*-*
+
# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
full-svn-test:
$(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
$(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=0 LC_ALL=en_US.UTF-8
-.PHONY: $(T) clean
+.PHONY: pre-clean $(T) aggregate-results clean
.NOTPARALLEL: