diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-03-07 22:43:46 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-07 22:43:46 -0800 |
commit | 60e3cad92ed93120b9e77116163b267fdda44f91 (patch) | |
tree | 240c556d8ce0d95433e4680b6725e5754d098627 /t/test-lib.sh | |
parent | ba51795c5fc32a507df9f91ffeae21893e9e7633 (diff) | |
parent | c8744d6a8b27115503565041566d97c21e722584 (diff) | |
download | git-60e3cad92ed93120b9e77116163b267fdda44f91.tar.gz git-60e3cad92ed93120b9e77116163b267fdda44f91.tar.xz |
Merge branch 'maint'
* maint:
unquote_c_style: fix off-by-one.
test-lib: fix TERM to dumb for test repeatability
config.txt: refer to --upload-pack and --receive-pack instead of --exec
git-gui: Gracefully fall back to po2msg.sh if msgfmt --tcl fails
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 87a5ea4a6..6aea0ea0a 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -3,12 +3,16 @@ # Copyright (c) 2005 Junio C Hamano # +# Keep the original TERM for say_color +ORIGINAL_TERM=$TERM + # For repeatability, reset the environment to known value. LANG=C LC_ALL=C PAGER=cat TZ=UTC -export LANG LC_ALL PAGER TZ +TERM=dumb +export LANG LC_ALL PAGER TERM TZ EDITOR=: VISUAL=: unset GIT_EDITOR @@ -58,12 +62,14 @@ esac # This test checks if command xyzzy does the right thing... # ' # . ./test-lib.sh - -[ "x$TERM" != "xdumb" ] && - [ -t 1 ] && - tput bold >/dev/null 2>&1 && - tput setaf 1 >/dev/null 2>&1 && - tput sgr0 >/dev/null 2>&1 && +[ "x$ORIGINAL_TERM" != "xdumb" ] && ( + TERM=$ORIGINAL_TERM && + export TERM && + [ -t 1 ] && + tput bold >/dev/null 2>&1 && + tput setaf 1 >/dev/null 2>&1 && + tput sgr0 >/dev/null 2>&1 + ) && color=t while test "$#" -ne 0 @@ -91,6 +97,9 @@ done if test -n "$color"; then say_color () { + ( + TERM=$ORIGINAL_TERM + export TERM case "$1" in error) tput bold; tput setaf 1;; # bold red skip) tput bold; tput setaf 2;; # bold green @@ -101,6 +110,7 @@ if test -n "$color"; then shift echo "* $*" tput sgr0 + ) } else say_color() { |