t7800: improve test descriptions with empty arguments
[alt-git.git] / t / Makefile
blobfae301248fe3d8d7394449b63a9282e74b522046
1 # Import tree-wide shared Makefile behavior and libraries
2 include ../shared.mak
4 # Run tests
6 # Copyright (c) 2005 Junio C Hamano
9 -include ../config.mak.autogen
10 -include ../config.mak
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 TEST_LINT ?= test-lint
22 ifdef TEST_OUTPUT_DIRECTORY
23 TEST_RESULTS_DIRECTORY = $(TEST_OUTPUT_DIRECTORY)/test-results
24 CHAINLINTTMP = $(TEST_OUTPUT_DIRECTORY)/chainlinttmp
25 else
26 TEST_RESULTS_DIRECTORY = test-results
27 CHAINLINTTMP = chainlinttmp
28 endif
30 # Shell quote;
31 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
32 TEST_SHELL_PATH_SQ = $(subst ','\'',$(TEST_SHELL_PATH))
33 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
34 TEST_RESULTS_DIRECTORY_SQ = $(subst ','\'',$(TEST_RESULTS_DIRECTORY))
35 CHAINLINTTMP_SQ = $(subst ','\'',$(CHAINLINTTMP))
37 T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
38 THELPERS = $(sort $(filter-out $(T),$(wildcard *.sh)))
39 TLIBS = $(sort $(wildcard lib-*.sh)) annotate-tests.sh
40 TPERF = $(sort $(wildcard perf/p[0-9][0-9][0-9][0-9]-*.sh))
41 TINTEROP = $(sort $(wildcard interop/i[0-9][0-9][0-9][0-9]-*.sh))
42 CHAINLINTTESTS = $(sort $(patsubst chainlint/%.test,%,$(wildcard chainlint/*.test)))
43 CHAINLINT = '$(PERL_PATH_SQ)' chainlint.pl
45 # `test-chainlint` (which is a dependency of `test-lint`, `test` and `prove`)
46 # checks all tests in all scripts via a single invocation, so tell individual
47 # scripts not to run the external "chainlint.pl" script themselves
48 CHAINLINTSUPPRESS = GIT_TEST_EXT_CHAIN_LINT=0 && export GIT_TEST_EXT_CHAIN_LINT &&
50 all: $(DEFAULT_TEST_TARGET)
52 test: pre-clean check-chainlint $(TEST_LINT)
53 $(CHAINLINTSUPPRESS) $(MAKE) aggregate-results-and-cleanup
55 failed:
56 @failed=$$(cd '$(TEST_RESULTS_DIRECTORY_SQ)' && \
57 grep -l '^failed [1-9]' *.counts | \
58 sed -n 's/\.counts$$/.sh/p') && \
59 test -z "$$failed" || $(MAKE) $$failed
61 prove: pre-clean check-chainlint $(TEST_LINT)
62 @echo "*** prove ***"; $(CHAINLINTSUPPRESS) $(PROVE) --exec '$(TEST_SHELL_PATH_SQ)' $(GIT_PROVE_OPTS) $(T) :: $(GIT_TEST_OPTS)
63 $(MAKE) clean-except-prove-cache
65 $(T):
66 @echo "*** $@ ***"; '$(TEST_SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
68 pre-clean:
69 $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)'
71 clean-except-prove-cache: clean-chainlint
72 $(RM) -r 'trash directory'.*
73 $(RM) -r valgrind/bin
75 clean: clean-except-prove-cache
76 $(RM) -r '$(TEST_RESULTS_DIRECTORY_SQ)'
77 $(RM) .prove
79 clean-chainlint:
80 $(RM) -r '$(CHAINLINTTMP_SQ)'
82 check-chainlint:
83 @mkdir -p '$(CHAINLINTTMP_SQ)' && \
84 for i in $(CHAINLINTTESTS); do \
85 echo "test_expect_success '$$i' '" && \
86 sed -e '/^# LINT: /d' chainlint/$$i.test && \
87 echo "'"; \
88 done >'$(CHAINLINTTMP_SQ)'/tests && \
89 { \
90 echo "# chainlint: $(CHAINLINTTMP_SQ)/tests" && \
91 for i in $(CHAINLINTTESTS); do \
92 echo "# chainlint: $$i" && \
93 cat chainlint/$$i.expect; \
94 done \
95 } >'$(CHAINLINTTMP_SQ)'/expect && \
96 $(CHAINLINT) --emit-all '$(CHAINLINTTMP_SQ)'/tests | \
97 sed -e 's/^[1-9][0-9]* //' >'$(CHAINLINTTMP_SQ)'/actual && \
98 diff -u '$(CHAINLINTTMP_SQ)'/expect '$(CHAINLINTTMP_SQ)'/actual
100 test-lint: test-lint-duplicates test-lint-executable test-lint-shell-syntax \
101 test-lint-filenames
102 ifneq ($(GIT_TEST_CHAIN_LINT),0)
103 test-lint: test-chainlint
104 endif
106 test-lint-duplicates:
107 @dups=`echo $(T) $(TPERF) | tr ' ' '\n' | sed 's/-.*//' | sort | uniq -d` && \
108 test -z "$$dups" || { \
109 echo >&2 "duplicate test numbers:" $$dups; exit 1; }
111 test-lint-executable:
112 @bad=`for i in $(T) $(TPERF); do test -x "$$i" || echo $$i; done` && \
113 test -z "$$bad" || { \
114 echo >&2 "non-executable tests:" $$bad; exit 1; }
116 test-lint-shell-syntax:
117 @'$(PERL_PATH_SQ)' check-non-portable-shell.pl $(T) $(THELPERS) $(TPERF)
119 test-lint-filenames:
120 @# We do *not* pass a glob to ls-files but use grep instead, to catch
121 @# non-ASCII characters (which are quoted within double-quotes)
122 @bad="$$(git -c core.quotepath=true ls-files 2>/dev/null | \
123 grep '["*:<>?\\|]')"; \
124 test -z "$$bad" || { \
125 echo >&2 "non-portable file name(s): $$bad"; exit 1; }
127 test-chainlint:
128 @$(CHAINLINT) $(T) $(TLIBS) $(TPERF) $(TINTEROP)
130 aggregate-results-and-cleanup: $(T)
131 $(MAKE) aggregate-results
132 $(MAKE) clean
134 aggregate-results:
135 @'$(SHELL_PATH_SQ)' ./aggregate-results.sh '$(TEST_RESULTS_DIRECTORY_SQ)'
137 valgrind:
138 $(MAKE) GIT_TEST_OPTS="$(GIT_TEST_OPTS) --valgrind"
140 perf:
141 $(MAKE) -C perf/ all
143 .PHONY: pre-clean $(T) aggregate-results clean valgrind perf \
144 check-chainlint clean-chainlint test-chainlint