]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5312: test non-destructive repack
authorJeff King <peff@peff.net>
Fri, 24 Sep 2021 18:36:42 +0000 (14:36 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 27 Sep 2021 19:36:45 +0000 (12:36 -0700)
In t5312, we create a state with a broken ref, and then make sure that
destructive repacks don't silently ignore the breakage (where a
destructive repack is one that might drop objects). But we don't check
the behavior of non-destructive repacks at all (i.e., ones where we'd
keep unreachable objects).

So let's add a test to confirm the current behavior, which is that
they are allowed (i.e., ignoring the breakage and considering any
objects it points to as unreachable). This may change in the future, but
we'd like for the test suite to alert us to that fact.

Signed-off-by: Jeff King <peff@peff.net>
Reviewed-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5312-prune-corruption.sh

index 0704f3e9301739870b2bba0ae1b4899667e6626e..c7010fb754f830c259801ccd3ae08494fc61182d 100755 (executable)
@@ -46,6 +46,11 @@ test_expect_success 'put bogus object into pack' '
        git cat-file -e $bogus
 '
 
+test_expect_success 'non-destructive repack ignores bogus name' '
+       create_bogus_ref &&
+       git repack -adk
+'
+
 test_expect_success 'destructive repack keeps packed object' '
        create_bogus_ref &&
        test_might_fail git repack -Ad --unpack-unreachable=now &&