summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2012-04-27 09:25:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-27 16:26:37 (GMT)
commitb082687cbac951d31bdea346404db5d0b99a0b73 (patch)
treeb2885045c2d2b4e5cd29138d0ade9296217d4670 /t/test-lib.sh
parentba998d33e22d6fce4445af5834dc227609672501 (diff)
downloadgit-b082687cbac951d31bdea346404db5d0b99a0b73.zip
git-b082687cbac951d31bdea346404db5d0b99a0b73.tar.gz
git-b082687cbac951d31bdea346404db5d0b99a0b73.tar.bz2
test-lib: skip test with COLUMNS=1 under mksh
mksh does not allow $COLUMNS to be set below 12. mksh(1) says that $COLUMNS is "always set, defaults to 80, unless the value as reported by stty(1) is non-zero and sane enough". This applies also to setting it directly for one command: $ COLUMNS=10 python -c 'import os; print os.environ["COLUMNS"]' 98 Add a test prerequisite by checking if we can set COLUMNS=1, to allow us to skip tests that needs it. Signed-off-by: Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index d75766a..50a01b1 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -614,6 +614,7 @@ case $(uname -s) in
;;
esac
+( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1
test -z "$NO_PERL" && test_set_prereq PERL
test -z "$NO_PYTHON" && test_set_prereq PYTHON
test -n "$USE_LIBPCRE" && test_set_prereq LIBPCRE