aboutsummaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorRichard Hansen <rhansen@bbn.com>2015-01-06 17:57:50 -0500
committerJunio C Hamano <gitster@pobox.com>2015-01-07 10:36:42 -0800
commit46f32a99b836ddb79a87690c4c4e2c7922f05896 (patch)
tree9619c273a29dae9cbcee5a69deab121442511098 /t/test-lib.sh
parentc5b9256360b06efb9453c1627b78b14598e288b8 (diff)
downloadgit-46f32a99b836ddb79a87690c4c4e2c7922f05896.tar.gz
git-46f32a99b836ddb79a87690c4c4e2c7922f05896.tar.xz
test-lib: use 'test ...' instead of '[ ... ]'
(see Documentation/CodingGuidelines) Signed-off-by: Richard Hansen <rhansen@bbn.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 9acdc8826..3670eed01 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -184,10 +184,10 @@ export _x05 _x40 _z40 LF u200c
# This test checks if command xyzzy does the right thing...
# '
# . ./test-lib.sh
-[ "x$ORIGINAL_TERM" != "xdumb" ] && (
+test "x$ORIGINAL_TERM" != "xdumb" && (
TERM=$ORIGINAL_TERM &&
export TERM &&
- [ -t 1 ] &&
+ test -t 1 &&
tput bold >/dev/null 2>&1 &&
tput setaf 1 >/dev/null 2>&1 &&
tput sgr0 >/dev/null 2>&1
@@ -684,7 +684,7 @@ test_done () {
then
error "Can't use skip_all after running some tests"
fi
- [ -z "$skip_all" ] || skip_all=" # SKIP $skip_all"
+ test -z "$skip_all" || skip_all=" # SKIP $skip_all"
if test $test_external_has_tap -eq 0
then