Add 2 more tests which test paths with // and /.., both of which fail currently. Signed-off-by: Michael J Gruber <git@xxxxxxxxxxxxxxxxxxxx> --- t/t7400-submodule-basic.sh | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh index 1757732..21bdfeb 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -63,6 +63,16 @@ test_expect_success 'submodule add with ./ in path' ' git submodule add "$submodurl" ././dotsubmod/./frotz/./ && git submodule init ' + +test_expect_failure 'submodule add with // in path' ' + git submodule add "$submodurl" slashslashsubmod///frotz// && + git submodule init +' + +test_expect_failure 'submodule add with /.. in path' ' + git submodule add "$submodurl" dotdotsubmod/../realsubmod/frotz/.. && + git submodule init +' # end of submodule add testing popd >/dev/null -- 1.6.2.rc1.30.gd43c -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html