NOTE: The argument in this message is not correct, see description in
cover letter.

The setup of the repositories in this test is using gitlinks without the
.gitmodules infrastructure. It is however testing convenience features
like --recurse-submodules=on-demand. These features are already not
supported by fetch without a .gitmodules file. This leads us to the
conclusion that it is not really used here as well.

Let's use the usual submodule commands to setup the repository in a
typical way. This also has the advantage that we are testing with a
repository structure that is more similar to one we could expect on a
users setup.

Signed-off-by: Heiko Voigt <hvo...@hvoigt.net>
---

As mentioned in the cover letter. This seems to be the only test that
ensures that we stay compatible with setups without .gitmodules. Maybe
we should add/revive some?

Cheers Heiko

 t/t5531-deep-submodule-push.sh | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/t/t5531-deep-submodule-push.sh b/t/t5531-deep-submodule-push.sh
index 39cb2c1..a4a2c6a 100755
--- a/t/t5531-deep-submodule-push.sh
+++ b/t/t5531-deep-submodule-push.sh
@@ -8,22 +8,26 @@ test_expect_success setup '
        mkdir pub.git &&
        GIT_DIR=pub.git git init --bare &&
        GIT_DIR=pub.git git config receive.fsckobjects true &&
+       mkdir submodule &&
+       (
+               cd submodule &&
+               git init &&
+               git config push.default matching &&
+               >junk &&
+               git add junk &&
+               git commit -m "Initial junk"
+       ) &&
+       git clone --bare submodule submodule.git &&
        mkdir work &&
        (
                cd work &&
                git init &&
                git config push.default matching &&
-               mkdir -p gar/bage &&
-               (
-                       cd gar/bage &&
-                       git init &&
-                       git config push.default matching &&
-                       >junk &&
-                       git add junk &&
-                       git commit -m "Initial junk"
-               ) &&
-               git add gar/bage &&
+               mkdir gar &&
+               git submodule add ../submodule.git gar/bage &&
                git commit -m "Initial superproject"
+               cd gar/bage &&
+               git remote rm origin
        )
 '
 
@@ -51,11 +55,10 @@ test_expect_success 'push if submodule has no remote' '
 
 test_expect_success 'push fails if submodule commit not on remote' '
        (
-               cd work/gar &&
-               git clone --bare bage ../../submodule.git &&
-               cd bage &&
+               cd work/gar/bage &&
                git remote add origin ../../../submodule.git &&
                git fetch &&
+               git push --set-upstream origin master &&
                >junk3 &&
                git add junk3 &&
                git commit -m "Third junk"
-- 
2.10.0.129.g35f6318

Reply via email to