On Wed, Mar 28, 2018 at 2:38 PM, Stefan Beller <sbeller@xxxxxxxxxx> wrote: > diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh > @@ -821,6 +821,18 @@ test_expect_success 'moving the superproject does not break submodules' ' > +test_expect_success 'moving the submodule does not break the superproject' ' > + ( > + cd addtest2 && > + > + mv repo repo.bak && > + git submodule status >actual && > + grep -e "^-" -e repo actual && > + > + mv repo.bak repo Should this "move back" be encapsulated in a test_when_finished? > + ) > +'