t: fix trivial &&-chain breakage

These are tests which are missing a link in their &&-chain,
but during a setup phase. We may fail to notice failure in
commands that build the test environment, but these are
typically not expected to fail at all (but it's still good
to double-check that our test environment is what we
expect).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King
2015-03-20 06:07:15 -04:00
committed by Junio C Hamano
parent 60687de5ba
commit 99094a7ad4
43 changed files with 70 additions and 68 deletions

View File

@ -766,7 +766,7 @@ test_expect_success 'moving the superproject does not break submodules' '
(
cd addtest &&
git submodule status >expect
)
) &&
mv addtest addtest2 &&
(
cd addtest2 &&
@ -987,7 +987,7 @@ test_expect_success 'submodule with UTF-8 name' '
test_expect_success 'submodule add clone shallow submodule' '
mkdir super &&
pwd=$(pwd)
pwd=$(pwd) &&
(
cd super &&
git init &&