t100[12] (read-tree-m-2way, read_tree_m_u_2way): add missing &&

Also, replace "|| return 1" with "&&" in order to keep commands chained.

Acked-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Elijah Newren 2010-10-03 14:00:02 -06:00 committed by Junio C Hamano
parent dd0c69e956
commit 315e76540b
2 changed files with 14 additions and 14 deletions

View File

@ -98,8 +98,8 @@ test_expect_success \
git checkout-index -u -f -q -a && git checkout-index -u -f -q -a &&
git update-index --add yomin && git update-index --add yomin &&
read_tree_twoway $treeH $treeM && read_tree_twoway $treeH $treeM &&
git ls-files --stage >4.out || return 1 git ls-files --stage >4.out &&
git diff --no-index M.out 4.out >4diff.out test_must_fail git diff --no-index M.out 4.out >4diff.out &&
compare_change 4diff.out expected && compare_change 4diff.out expected &&
check_cache_at yomin clean' check_cache_at yomin clean'


@ -112,8 +112,8 @@ test_expect_success \
git update-index --add yomin && git update-index --add yomin &&
echo yomin yomin >yomin && echo yomin yomin >yomin &&
read_tree_twoway $treeH $treeM && read_tree_twoway $treeH $treeM &&
git ls-files --stage >5.out || return 1 git ls-files --stage >5.out &&
git diff --no-index M.out 5.out >5diff.out test_must_fail git diff --no-index M.out 5.out >5diff.out &&
compare_change 5diff.out expected && compare_change 5diff.out expected &&
check_cache_at yomin dirty' check_cache_at yomin dirty'


@ -213,8 +213,8 @@ test_expect_success \
echo nitfol nitfol >nitfol && echo nitfol nitfol >nitfol &&
git update-index --add nitfol && git update-index --add nitfol &&
read_tree_twoway $treeH $treeM && read_tree_twoway $treeH $treeM &&
git ls-files --stage >14.out || return 1 git ls-files --stage >14.out &&
git diff --no-index M.out 14.out >14diff.out test_must_fail git diff --no-index M.out 14.out >14diff.out &&
compare_change 14diff.out expected && compare_change 14diff.out expected &&
check_cache_at nitfol clean' check_cache_at nitfol clean'


@ -227,8 +227,8 @@ test_expect_success \
git update-index --add nitfol && git update-index --add nitfol &&
echo nitfol nitfol nitfol >nitfol && echo nitfol nitfol nitfol >nitfol &&
read_tree_twoway $treeH $treeM && read_tree_twoway $treeH $treeM &&
git ls-files --stage >15.out || return 1 git ls-files --stage >15.out &&
git diff --no-index M.out 15.out >15diff.out test_must_fail git diff --no-index M.out 15.out >15diff.out &&
compare_change 15diff.out expected && compare_change 15diff.out expected &&
check_cache_at nitfol dirty' check_cache_at nitfol dirty'


@ -377,7 +377,7 @@ test_expect_success \
git ls-files --stage >treeM.out && git ls-files --stage >treeM.out &&


rm -f a && rm -f a &&
mkdir a mkdir a &&
: >a/b && : >a/b &&
git update-index --add --remove a a/b && git update-index --add --remove a a/b &&
treeH=`git write-tree` && treeH=`git write-tree` &&

View File

@ -205,8 +205,8 @@ test_expect_success \
echo nitfol nitfol >nitfol && echo nitfol nitfol >nitfol &&
git update-index --add nitfol && git update-index --add nitfol &&
git read-tree -m -u $treeH $treeM && git read-tree -m -u $treeH $treeM &&
git ls-files --stage >14.out || return 1 git ls-files --stage >14.out &&
git diff -U0 --no-index M.out 14.out >14diff.out test_must_fail git diff -U0 --no-index M.out 14.out >14diff.out &&
compare_change 14diff.out expected && compare_change 14diff.out expected &&
sum bozbar frotz >actual14.sum && sum bozbar frotz >actual14.sum &&
grep -v nitfol M.sum > expected14.sum && grep -v nitfol M.sum > expected14.sum &&
@ -226,8 +226,8 @@ test_expect_success \
git update-index --add nitfol && git update-index --add nitfol &&
echo nitfol nitfol nitfol >nitfol && echo nitfol nitfol nitfol >nitfol &&
git read-tree -m -u $treeH $treeM && git read-tree -m -u $treeH $treeM &&
git ls-files --stage >15.out || return 1 git ls-files --stage >15.out &&
git diff -U0 --no-index M.out 15.out >15diff.out test_must_fail git diff -U0 --no-index M.out 15.out >15diff.out &&
compare_change 15diff.out expected && compare_change 15diff.out expected &&
check_cache_at nitfol dirty && check_cache_at nitfol dirty &&
sum bozbar frotz >actual15.sum && sum bozbar frotz >actual15.sum &&
@ -314,7 +314,7 @@ test_expect_success \
# Also make sure we did not break DF vs DF/DF case. # Also make sure we did not break DF vs DF/DF case.
test_expect_success \ test_expect_success \
'DF vs DF/DF case setup.' \ 'DF vs DF/DF case setup.' \
'rm -f .git/index 'rm -f .git/index &&
echo DF >DF && echo DF >DF &&
git update-index --add DF && git update-index --add DF &&
treeDF=`git write-tree` && treeDF=`git write-tree` &&