1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-18 21:19:13 +02:00

mktag tests: run "fsck" after creating "mytag"

Change the last test in the file to run an "fsck --strict" after
creating the tag at the end.

We're just doing this for good measure to check that fsck behaves as
expected now that there's finally a reference for our valid tag. Other
tests going to be checking this elsewhere, but it's nice to cover all
the edge cases in this test to make it as self-contained as possible.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2021-01-05 20:42:38 +01:00 committed by Junio C Hamano
parent 5c2303e0c7
commit 3b9e4dd3a3

View File

@ -350,7 +350,8 @@ EOF
test_expect_success 'create valid tag' '
git mktag <tag.sig >hash &&
git update-ref refs/tags/mytag $(cat hash) $(test_oid zero)
git update-ref refs/tags/mytag $(cat hash) $(test_oid zero) &&
git fsck --strict
'
test_done