summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0a392cb)
raw | patch | inline | side by side (parent: 0a392cb)
author | Sverre Rabbelier <srabbelier@gmail.com> | |
Sun, 8 Jun 2008 14:04:35 +0000 (16:04 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 8 Jun 2008 22:08:19 +0000 (15:08 -0700) |
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>
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>
t/Makefile | patch | blob | history |
diff --git a/t/Makefile b/t/Makefile
index dfa90ace1aad38119e681300730e2170ee3796c5..a778865ae7d015535763b856391ba751f2a9f87c 100644 (file)
--- a/t/Makefile
+++ b/t/Makefile
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: