From b50c8469cc9a336b22ef37b23711d4547a48bc2b Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Thu, 22 May 2008 18:03:00 -0400 Subject: [PATCH] Add test for cloning with "--reference" repo being a subset of source repo The first test in this series tests "git clone -l -s --reference B A C", where repo B is a superset of repo A (A has one commit, B has the same commit plus another). In this case, all objects to be cloned are already present in B. However, we should also test the case where the "--reference" repo is a _subset_ of the source repo (e.g. "git clone -l -s --reference A B C"), i.e. some objects are not available in the "--reference" repo, and will have to be found in the source repo. Signed-off-by: Johan Herland Signed-off-by: Daniel Barkalow Signed-off-by: Junio C Hamano --- t/t5700-clone-reference.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/t/t5700-clone-reference.sh b/t/t5700-clone-reference.sh index b53c3ff956..0112c218e0 100755 --- a/t/t5700-clone-reference.sh +++ b/t/t5700-clone-reference.sh @@ -141,4 +141,9 @@ test_expect_success 'cloning alternate repo #1, using #2 as reference' \ cd "$base_dir" +test_expect_success 'cloning with reference being subset of source (-l -s)' \ +'git clone -l -s --reference A B E' + +cd "$base_dir" + test_done -- 2.11.4.GIT