]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t1405: mark test for 'git pack-refs' as REFFILES
authorHan-Wen Nienhuys <hanwen@google.com>
Mon, 2 Aug 2021 16:53:32 +0000 (16:53 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 2 Aug 2021 20:17:21 +0000 (13:17 -0700)
The tests verifies that "pack-refs" causes loose refs to be packed. As both
loose and packed refs are concepts specific to the files backend, mark the test
as REFFILES.

Check the outcome of the pack-refs operation. This was apparently forgotten in
the commit introducing this test: 16feb99d (Mar 26 2017, "t1405: some basic
tests on main ref store").

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1405-main-ref-store.sh

index 92b04873247a4e1bac7332b65761c295eadce794..49718b7ea7fe7df85b6e2bd4c9833ee443825632 100755 (executable)
@@ -9,12 +9,18 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 RUN="test-tool ref-store main"
 
-test_expect_success 'pack_refs(PACK_REFS_ALL | PACK_REFS_PRUNE)' '
-       test_commit one &&
+
+test_expect_success 'setup' '
+       test_commit one
+'
+
+test_expect_success REFFILES 'pack_refs(PACK_REFS_ALL | PACK_REFS_PRUNE)' '
        N=`find .git/refs -type f | wc -l` &&
        test "$N" != 0 &&
-       $RUN pack-refs 3 &&
-       N=`find .git/refs -type f | wc -l`
+       ALL_OR_PRUNE_FLAG=3 &&
+       $RUN pack-refs ${ALL_OR_PRUNE_FLAG} &&
+       N=`find .git/refs -type f` &&
+       test -z "$N"
 '
 
 test_expect_success 'create_symref(FOO, refs/heads/main)' '