]> git.ipfire.org Git - thirdparty/git.git/blame - t/Makefile
Rewrite "git-frotz" to "git frotz"
[thirdparty/git.git] / t / Makefile
CommitLineData
e1970ce4
JH
1# Run tests
2#
3# Copyright (c) 2005 Junio C Hamano
4#
d6928ebd
PB
5
6#GIT_TEST_OPTS=--verbose --debug
edde7a8b 7SHELL_PATH ?= $(SHELL)
455a7f32 8TAR ?= $(TAR)
e1970ce4 9
4769948a 10# Shell quote;
39c015c5 11SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
4769948a 12
e1970ce4 13T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
60d02ccc 14TSVN = $(wildcard t91[0-9][0-9]-*.sh)
e1970ce4 15
23fc63bf
AR
16all: $(T) clean
17
18$(T):
9c3796fc 19 @echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
e1970ce4 20
902d960b 21clean:
e1970ce4 22 rm -fr trash
23fc63bf 23
60d02ccc
EW
24# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
25full-svn-test:
ed92f170 26 $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=1 LC_ALL=C
b9c85187 27 $(MAKE) $(TSVN) GIT_SVN_NO_OPTIMIZE_COMMITS=0 LC_ALL=en_US.UTF-8
60d02ccc 28
23fc63bf 29.PHONY: $(T) clean
e6bfaf3e 30.NOTPARALLEL: