diff options
author | Petr Baudis <pasky@ucw.cz> | 2005-05-14 17:58:22 +0200 |
---|---|---|
committer | Petr Baudis <xpasky@machine.sinus.cz> | 2005-05-14 17:58:22 +0200 |
commit | d6928ebd5098452b5bce0f1a5bd3afab5c4f9225 (patch) | |
tree | fa913d45277bc2ab2c70f1c980f901dc3592fa86 /t | |
parent | 902d960b382a0cd424618ff4e1316da40e4be2f6 (diff) | |
download | git-d6928ebd5098452b5bce0f1a5bd3afab5c4f9225.tar.gz git-d6928ebd5098452b5bce0f1a5bd3afab5c4f9225.tar.xz |
t/Makefile: OPTS -> GIT_TEST_OPTS
This way, passing this variable through the environment actually makes
sense.
Diffstat (limited to 't')
-rw-r--r-- | t/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/Makefile b/t/Makefile index fc9f734fe..6882e23be 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: |