Test rewind and rewind and continue even though we don't allow them.
[git-central.git] / tests / Makefile
1 # Run tests
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
5
6 #GIT_TEST_OPTS=--verbose --debug
7
8 T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
9
10 all: $(T) clean
11
12 $(T):
13         @echo "*** $@ ***"; GIT_CONFIG=.git/config /bin/sh $@ $(GIT_TEST_OPTS)
14
15 clean:
16         rm -fr 'trash directory'
17
18 .PHONY: $(T) clean
19