diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-09 21:58:02 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-09 21:58:02 -0700 |
commit | 899460f336254a128602b86ca48433a983dced72 (patch) | |
tree | 77ddc653744c096fd00a6160c6d427fcf90c744b /t | |
parent | fb8024b414b417d85ce215eba3dd23c188500c15 (diff) | |
download | git-899460f336254a128602b86ca48433a983dced72.tar.gz git-899460f336254a128602b86ca48433a983dced72.tar.xz |
Also force LC_ALL in test scripts.
Noticed by Junichi Uekawa.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/test-lib.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 1523d2ebb..3f8a6fe41 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -5,9 +5,10 @@ # For repeatability, reset the environment to known value. LANG=C +LC_ALL=C PAGER=cat TZ=UTC -export LANG PAGER TZ +export LANG LC_ALL PAGER TZ unset AUTHOR_DATE unset AUTHOR_EMAIL unset AUTHOR_NAME |