tests: remove unnecessary '^' from 'expr' regular expression

As Brandon noticed, a regular expression match given to 'expr' is already
anchored at the beginning.  Some versions of expr even complain about this.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2010-06-21 11:18:54 -07:00
Родитель 9932977173
Коммит e0ae1e6f4d
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -13,7 +13,7 @@ test_expect_success 'determine default editor' '
'
if ! expr "$vi" : '^[a-z]*$' >/dev/null
if ! expr "$vi" : '[a-z]*$' >/dev/null
then
vi=
fi

Просмотреть файл

@ -109,7 +109,7 @@ test_expect_success TTY 'no pager with --no-pager' '
# for the first color; the text "commit" comes later.
colorful() {
read firstline <$1
! expr "$firstline" : "^[a-zA-Z]" >/dev/null
! expr "$firstline" : "[a-zA-Z]" >/dev/null
}
test_expect_success 'tests can detect color' '
@ -167,7 +167,7 @@ test_expect_success 'determine default pager' '
test -n "$less"
'
if expr "$less" : '^[a-z][a-z]*$' >/dev/null && test_have_prereq TTY
if expr "$less" : '[a-z][a-z]*$' >/dev/null && test_have_prereq TTY
then
test_set_prereq SIMPLEPAGER
fi