login
Header Space

 
 

[PATCH 3/3] Hook up the result aggregation in the test makefile.

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <git@...>
Cc: <dsymonds@...>, Sverre Rabbelier <srabbelier@...>
Date: Monday, May 12, 2008 - 5:33 am

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>
---
 t/Makefile |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/t/Makefile b/t/Makefile
index 72d7884..3955ee8 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -14,13 +14,20 @@ 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) -f /tmp/git-test-results
+
 clean:
 	$(RM) -r trash
+	$(RM) -f /tmp/git-test-results
+
+aggregate-results:
+	./key_value_parser.py
 
 # we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
 full-svn-test:
-- 
1.5.5.1.178.g1f811

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/3] Aggregate testcase results, Sverre Rabbelier, (Mon May 12, 5:33 am)
[PATCH 3/3] Hook up the result aggregation in the test makef..., Sverre Rabbelier, (Mon May 12, 5:33 am)
Re: [PATCH] A simple script to parse the results from the te..., Johannes Schindelin, (Sun Jun 8, 1:27 pm)
Re: [PATCH 2/3] A simple python script to parse the results ..., Johannes Schindelin, (Mon May 12, 9:00 am)
Re: [PATCH 2/3] A simple python script to parse the results ..., Johannes Schindelin, (Mon May 12, 9:24 am)
speck-geostationary