t4014: fix for whitespace from "wc -l"
Some "wc" insist on putting a TAB in front of the number. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>maint
parent
ece3c67f9c
commit
8780bd8fd2
|
@ -37,7 +37,7 @@ test_expect_success "format-patch --ignore-if-in-upstream" '
|
||||||
|
|
||||||
git format-patch --stdout master..side >patch0 &&
|
git format-patch --stdout master..side >patch0 &&
|
||||||
cnt=`grep "^From " patch0 | wc -l` &&
|
cnt=`grep "^From " patch0 | wc -l` &&
|
||||||
test "$cnt" = 3
|
test $cnt = 3
|
||||||
|
|
||||||
'
|
'
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ test_expect_success "format-patch --ignore-if-in-upstream" '
|
||||||
git format-patch --stdout \
|
git format-patch --stdout \
|
||||||
--ignore-if-in-upstream master..side >patch1 &&
|
--ignore-if-in-upstream master..side >patch1 &&
|
||||||
cnt=`grep "^From " patch1 | wc -l` &&
|
cnt=`grep "^From " patch1 | wc -l` &&
|
||||||
test "$cnt" = 2
|
test $cnt = 2
|
||||||
|
|
||||||
'
|
'
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ test_expect_success "format-patch result applies" '
|
||||||
git checkout -b rebuild-0 master &&
|
git checkout -b rebuild-0 master &&
|
||||||
git am -3 patch0 &&
|
git am -3 patch0 &&
|
||||||
cnt=`git rev-list master.. | wc -l` &&
|
cnt=`git rev-list master.. | wc -l` &&
|
||||||
test "$cnt" = 2
|
test $cnt = 2
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success "format-patch --ignore-if-in-upstream result applies" '
|
test_expect_success "format-patch --ignore-if-in-upstream result applies" '
|
||||||
|
@ -63,7 +63,7 @@ test_expect_success "format-patch --ignore-if-in-upstream result applies" '
|
||||||
git checkout -b rebuild-1 master &&
|
git checkout -b rebuild-1 master &&
|
||||||
git am -3 patch1 &&
|
git am -3 patch1 &&
|
||||||
cnt=`git rev-list master.. | wc -l` &&
|
cnt=`git rev-list master.. | wc -l` &&
|
||||||
test "$cnt" = 2
|
test $cnt = 2
|
||||||
'
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in New Issue