]> git.ipfire.org Git - thirdparty/git.git/blame - t/Makefile
Add a test for rebase when a change was picked upstream
[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
JH
10# Shell quote;
11# Result of this needs to be placed inside ''
12shq = $(subst ','\'',$(1))
13# This has surrounding ''
14shellquote = '$(call shq,$(1))'
15
e1970ce4
JH
16T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
17
23fc63bf
AR
18all: $(T) clean
19
20$(T):
21 @echo "*** $@ ***"; $(call shellquote,$(SHELL_PATH)) $@ $(GIT_TEST_OPTS)
e1970ce4 22
902d960b 23clean:
e1970ce4 24 rm -fr trash
23fc63bf
AR
25
26.PHONY: $(T) clean
27.NOPARALLEL:
28