t9400: fix gnuism in grep

Using "\+" in "grep" and expecting that it means one or more
is a GNUism.  Spell it in a dumb and portable way.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2012-04-19 13:05:26 -07:00
parent b1bcfbe344
commit 27187817e4
1 changed files with 2 additions and 2 deletions

View File

@ -500,8 +500,8 @@ test_expect_success 'cvs status (no subdirs in header)' '
cd "$WORKDIR" cd "$WORKDIR"
test_expect_success 'cvs co -c (shows module database)' ' test_expect_success 'cvs co -c (shows module database)' '
GIT_CONFIG="$git_config" cvs co -c > out && GIT_CONFIG="$git_config" cvs co -c > out &&
grep "^master[ ]\+master$" < out && grep "^master[ ][ ]*master$" <out &&
! grep -v "^master[ ]\+master$" < out ! grep -v "^master[ ][ ]*master$" <out
' '


#------------ #------------