aboutsummaryrefslogtreecommitdiff
path: root/TEST
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-07-09 00:42:26 -0700
committerJunio C Hamano <junkio@cox.net>2006-07-13 23:10:19 -0700
commit06d30f4f3eea71bce4cf48db3ea384976b3983b7 (patch)
treef3b1d0ba712cc976dba5bc1d7d9dc5f104d81bee /TEST
parent6d297f81373e19d86b8f02cb68120201d1b0ab1d (diff)
downloadgit-06d30f4f3eea71bce4cf48db3ea384976b3983b7.tar.gz
git-06d30f4f3eea71bce4cf48db3ea384976b3983b7.tar.xz
recur vs recursive: help testing without touching too many stuff.
During git-merge-recur development, you could set an environment variable GIT_USE_RECUR_FOR_RECURSIVE to use WIP recur in place of the recursive strategy. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'TEST')
-rwxr-xr-xTEST18
1 files changed, 11 insertions, 7 deletions
diff --git a/TEST b/TEST
index d53098347..7286e2a54 100755
--- a/TEST
+++ b/TEST
@@ -1,10 +1,14 @@
#!/bin/sh -x
+
cd t || exit
-./t3400-rebase.sh "$@" && \
-./t6020-merge-df.sh "$@" && \
-./t3401-rebase-partial.sh "$@" && \
-./t6021-merge-criss-cross.sh "$@" && \
-./t3402-rebase-merge.sh "$@" && \
-./t6022-merge-rename.sh "$@" && \
-./t6010-merge-base.sh "$@" && \
+GIT_USE_RECUR_FOR_RECURSIVE=LetsTryIt
+export GIT_USE_RECUR_FOR_RECURSIVE
+
+./t3400-rebase.sh "$@" &&
+./t6020-merge-df.sh "$@" &&
+./t3401-rebase-partial.sh "$@" &&
+./t6021-merge-criss-cross.sh "$@" &&
+./t3402-rebase-merge.sh "$@" &&
+./t6022-merge-rename.sh "$@" &&
+./t6010-merge-base.sh "$@" &&
: