diff options
Diffstat (limited to 't/Makefile')
-rw-r--r-- | t/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/Makefile b/t/Makefile index fc9f734fef..6882e23be5 100644 --- a/t/Makefile +++ b/t/Makefile @@ -2,12 +2,13 @@ # # Copyright (c) 2005 Junio C Hamano # -#OPTS=--verbose --debug + +#GIT_TEST_OPTS=--verbose --debug T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) all: - @$(foreach t,$T,echo "*** $t ***"; sh $t $(OPTS) || exit; ) + @$(foreach t,$T,echo "*** $t ***"; sh $t $(GIT_TEST_OPTS) || exit; ) @rm -fr trash clean: |