]> git.ipfire.org Git - thirdparty/git.git/blob - t/Makefile
Merge branch 'ps/chainlint-self-check-update'
[thirdparty/git.git] / t / Makefile
1 # Import tree-wide shared Makefile behavior and libraries
2 include ../shared.mak
3
4 # Run tests
5 #
6 # Copyright (c) 2005 Junio C Hamano
7 #
8
9 -include ../config.mak.autogen
10 -include ../config.mak
11
12 #GIT_TEST_OPTS = --verbose --debug
13 SHELL_PATH ?= $(SHELL)
14 TEST_SHELL_PATH ?= $(SHELL_PATH)
15 PERL_PATH ?= /usr/bin/perl
16 TAR ?= $(TAR)
17 RM ?= rm -f
18 PROVE ?= prove
19 DEFAULT_TEST_TARGET ?= test
20 DEFAULT_UNIT_TEST_TARGET ?= unit-tests-raw
21 TEST_LINT ?= test-lint
22
23 ifdef TEST_OUTPUT_DIRECTORY
24 TEST_RESULTS_DIRECTORY = $(TEST_OUTPUT_DIRECTORY)/test-results
25 CHAINLINTTMP = $(TEST_OUTPUT_DIRECTORY)/chainlinttmp
26 else
27 TEST_RESULTS_DIRECTORY = test-results
28 CHAINLINTTMP = chainlinttmp
29 endif
30
31 # Shell quote;
32 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
33 TEST_SHELL_PATH_SQ = $(subst ','\'',$(TEST_SHELL_PATH))
34 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
35 TEST_RESULTS_DIRECTORY_SQ = $(subst ','\'',$(TEST_RESULTS_DIRECTORY))
36 CHAINLINTTMP_SQ = $(subst ','\'',$(CHAINLINTTMP))
37
38 T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
39 THELPERS = $(sort $(filter-out $(T),$(wildcard *.sh)))
40 TLIBS = $(sort $(wildcard lib-*.sh)) annotate-tests.sh
41 TPERF = $(sort $(wildcard perf/p[0-9][0-9][0-9][0-9]-*.sh))
42 TINTEROP = $(sort $(wildcard interop/i[0-9][0-9][0-9][0-9]-*.sh))
43 CHAINLINTTESTS = $(sort $(patsubst chainlint/%.test,%,$(wildcard chainlint/*.test)))
44 CHAINLINT = '$(PERL_PATH_SQ)' chainlint.pl
45 UNIT_TESTS = $(sort $(filter-out %.pdb unit-tests/bin/t-basic%,$(wildcard unit-tests/bin/t-*)))
46
47 # `test-chainlint` (which is a dependency of `test-lint`, `test` and `prove`)
48 # checks all tests in all scripts via a single invocation, so tell individual
49 # scripts not to run the external "chainlint.pl" script themselves
50 CHAINLINTSUPPRESS = GIT_TEST_EXT_CHAIN_LINT=0 && export GIT_TEST_EXT_CHAIN_LINT &&
51
52 all: $(DEFAULT_TEST_TARGET)
53
54 test: pre-clean check-chainlint $(TEST_LINT)
55 $(CHAINLINTSUPPRESS) $(MAKE) aggregate-results-and-cleanup
56
57 failed:
58 @failed=$$(cd '$(TEST_RESULTS_DIRECTORY_SQ)' && \
59 grep -l '^failed [1-9]' *.counts | \
60 sed -n 's/\.counts$$/.sh/p') && \
61 test -z "$$failed" || $(MAKE) $$failed
62
63 prove: pre-clean check-chainlint $(TEST_LINT)
64 @echo "*** prove ***"; $(CHAINLINTSUPPRESS) $(PROVE) --exec '$(TEST_SHELL_PATH_SQ)' $(GIT_PROVE_OPTS) $(T) :: $(GIT_TEST_OPTS)
65 $(MAKE) clean-except-prove-cache
66
67 $(T):
68 @echo "*** $@ ***"; '$(TEST_SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
69
70 $(UNIT_TESTS):
71 @echo "*** $@ ***"; $@
72
73 .PHONY: unit-tests unit-tests-raw unit-tests-prove
74 unit-tests: $(DEFAULT_UNIT_TEST_TARGET)
75
76 unit-tests-raw: $(UNIT_TESTS)
77
78 unit-tests-prove:
79 @echo "*** prove - unit tests ***"; $(PROVE) $(GIT_PROVE_OPTS) $(UNIT_TESTS)
80
81 pre-clean:
82 $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)'
83
84 clean-except-prove-cache: clean-chainlint
85 $(RM) -r 'trash directory'.*
86 $(RM) -r valgrind/bin
87
88 clean: clean-except-prove-cache
89 $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)'
90 $(RM) .prove
91
92 clean-chainlint:
93 $(RM) -r '$(CHAINLINTTMP_SQ)'
94
95 check-chainlint:
96 @mkdir -p '$(CHAINLINTTMP_SQ)' && \
97 for i in $(CHAINLINTTESTS); do \
98 echo "test_expect_success '$$i' '" && \
99 sed -e '/^# LINT: /d' chainlint/$$i.test && \
100 echo "'"; \
101 done >'$(CHAINLINTTMP_SQ)'/tests && \
102 { \
103 echo "# chainlint: $(CHAINLINTTMP_SQ)/tests" && \
104 for i in $(CHAINLINTTESTS); do \
105 echo "# chainlint: $$i" && \
106 cat chainlint/$$i.expect; \
107 done \
108 } >'$(CHAINLINTTMP_SQ)'/expect && \
109 $(CHAINLINT) --emit-all '$(CHAINLINTTMP_SQ)'/tests | \
110 sed -e 's/^[1-9][0-9]* //' >'$(CHAINLINTTMP_SQ)'/actual && \
111 diff -u '$(CHAINLINTTMP_SQ)'/expect '$(CHAINLINTTMP_SQ)'/actual
112
113 test-lint: test-lint-duplicates test-lint-executable test-lint-shell-syntax \
114 test-lint-filenames
115 ifneq ($(GIT_TEST_CHAIN_LINT),0)
116 test-lint: test-chainlint
117 endif
118
119 test-lint-duplicates:
120 @dups=`echo $(T) $(TPERF) | tr ' ' '\n' | sed 's/-.*//' | sort | uniq -d` && \
121 test -z "$$dups" || { \
122 echo >&2 "duplicate test numbers:" $$dups; exit 1; }
123
124 test-lint-executable:
125 @bad=`for i in $(T) $(TPERF); do test -x "$$i" || echo $$i; done` && \
126 test -z "$$bad" || { \
127 echo >&2 "non-executable tests:" $$bad; exit 1; }
128
129 test-lint-shell-syntax:
130 @'$(PERL_PATH_SQ)' check-non-portable-shell.pl $(T) $(THELPERS) $(TPERF)
131
132 test-lint-filenames:
133 @# We do *not* pass a glob to ls-files but use grep instead, to catch
134 @# non-ASCII characters (which are quoted within double-quotes)
135 @bad="$$(git -c core.quotepath=true ls-files 2>/dev/null | \
136 grep '["*:<>?\\|]')"; \
137 test -z "$$bad" || { \
138 echo >&2 "non-portable file name(s): $$bad"; exit 1; }
139
140 test-chainlint:
141 @$(CHAINLINT) $(T) $(TLIBS) $(TPERF) $(TINTEROP)
142
143 aggregate-results-and-cleanup: $(T)
144 $(MAKE) aggregate-results
145 $(MAKE) clean
146
147 aggregate-results:
148 @'$(SHELL_PATH_SQ)' ./aggregate-results.sh '$(TEST_RESULTS_DIRECTORY_SQ)'
149
150 valgrind:
151 $(MAKE) GIT_TEST_OPTS="$(GIT_TEST_OPTS) --valgrind"
152
153 perf:
154 $(MAKE) -C perf/ all
155
156 .PHONY: pre-clean $(T) aggregate-results clean valgrind perf \
157 check-chainlint clean-chainlint test-chainlint $(UNIT_TESTS)