From: Pavel Roskin Date: Thu, 11 Aug 2005 02:10:01 +0000 (-0400) Subject: [PATCH] Need to set PAGER in tests X-Git-Tag: v0.99.5~24^2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d9bdd39eee54ebd77bc01235c00e827ddbe892d0;p=git.git [PATCH] Need to set PAGER in tests "t5400-send-pack.sh --verbose" stops waiting for user input. It happens because "git log" uses less for output now. To prevent this, PAGER should be set to cat. Signed-off-by: Pavel Roskin Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib.sh b/t/test-lib.sh index e62bd0408..5cdd41dd9 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -5,8 +5,9 @@ # For repeatability, reset the environment to known value. LANG=C +PAGER=cat TZ=UTC -export LANG TZ +export LANG PAGER TZ unset AUTHOR_DATE unset AUTHOR_EMAIL unset AUTHOR_NAME