]> Tony Duckles's Git Repositories (git.nynim.org) - svn2svn.git/blob - tests/Makefile
Test framework
[svn2svn.git] / tests / Makefile
1 # Run tests
2
3 #SVN2SVN_TEST_OPTS=--verbose --debug
4 SHELL_PATH ?= $(SHELL)
5 RM ?= rm -f
6 DEFAULT_TEST_TARGET ?= test
7
8 # Shell quote;
9 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
10
11 T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
12
13 all: $(DEFAULT_TEST_TARGET)
14
15 test: pre-clean $(TEST_LINT)
16 $(MAKE) aggregate-results-and-cleanup
17
18 $(T):
19 @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(SVN2SVN_TEST_OPTS)
20
21 pre-clean:
22 $(RM) -r test-results
23
24 clean:
25 $(RM) -r test-results
26
27 test-lint: test-lint-duplicates test-lint-executable
28
29 test-lint-duplicates:
30 @dups=`echo $(T) | tr ' ' '\n' | sed 's/-.*//' | sort | uniq -d` && \
31 test -z "$$dups" || { \
32 echo >&2 "duplicate test numbers:" $$dups; exit 1; }
33
34 test-lint-executable:
35 @bad=`for i in $(T); do test -x "$$i" || echo $$i; done` && \
36 test -z "$$bad" || { \
37 echo >&2 "non-executable tests:" $$bad; exit 1; }
38
39 aggregate-results-and-cleanup: $(T)
40 $(MAKE) aggregate-results
41 $(MAKE) clean
42
43 aggregate-results:
44 for f in test-results/t*-*.counts; do \
45 echo "$$f"; \
46 done | '$(SHELL_PATH_SQ)' ./aggregate-results.sh
47
48 .PHONY: pre-clean $(T) aggregate-results clean