Code

test-lib: Multi-prereq support only checked the last prereq
[git.git] / t / Makefile
1 # Run tests
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
6 -include ../config.mak.autogen
7 -include ../config.mak
9 #GIT_TEST_OPTS=--verbose --debug
10 SHELL_PATH ?= $(SHELL)
11 TAR ?= $(TAR)
12 RM ?= rm -f
14 # Shell quote;
15 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
17 T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
18 TSVN = $(wildcard t91[0-9][0-9]-*.sh)
20 all: pre-clean
21         $(MAKE) aggregate-results-and-cleanup
23 $(T):
24         @echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
26 pre-clean:
27         $(RM) -r test-results
29 clean:
30         $(RM) -r 'trash directory'.* test-results
31         $(RM) t????/cvsroot/CVSROOT/?*
32         $(RM) -r valgrind/bin
33         $(RM) .prove
35 aggregate-results-and-cleanup: $(T)
36         $(MAKE) aggregate-results
37         $(MAKE) clean
39 aggregate-results:
40         for f in test-results/t*-*.counts; do \
41                 echo "$$f"; \
42         done | '$(SHELL_PATH_SQ)' ./aggregate-results.sh
44 # we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
45 full-svn-test:
46         $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
47         $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=0 LC_ALL=en_US.UTF-8
49 valgrind:
50         GIT_TEST_OPTS=--valgrind $(MAKE)
52 .PHONY: pre-clean $(T) aggregate-results clean valgrind