Skip to content

Commit

Permalink
Merge branch 'js/fsck-name-objects-fix'
Browse files Browse the repository at this point in the history
Fix "git fsck --name-objects" which apparently has not been used by
anybody who is motivated enough to report breakage.

* js/fsck-name-objects-fix:
  fsck --name-objects: be more careful parsing generation numbers
  t1450: robustify `remove_object()`
  • Loading branch information
gitster committed Feb 18, 2021
2 parents 9bdccbc + e89f893 commit 9e634a9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
5 changes: 5 additions & 0 deletions fsck.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,11 @@ static int fsck_walk_commit(struct commit *commit, void *data, struct fsck_optio
generation += power * (name[--len] - '0');
if (power > 1 && len && name[len - 1] == '~')
name_prefix_len = len - 1;
else {
/* Maybe a non-first parent, e.g. HEAD^2 */
generation = 0;
name_prefix_len = len;
}
}
}

Expand Down
26 changes: 12 additions & 14 deletions t/t1450-fsck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,13 @@ test_expect_success 'HEAD is part of refs, valid objects appear valid' '
# specific corruption you test afterwards, lest a later test trip over
# it.

test_expect_success 'setup: helpers for corruption tests' '
sha1_file() {
remainder=${1#??} &&
firsttwo=${1%$remainder} &&
echo ".git/objects/$firsttwo/$remainder"
} &&
sha1_file () {
git rev-parse --git-path objects/$(test_oid_to_path "$1")
}

remove_object() {
rm "$(sha1_file "$1")"
}
'
remove_object () {
rm "$(sha1_file "$1")"
}

test_expect_success 'object with bad sha1' '
sha=$(echo blob | git hash-object -w --stdin) &&
Expand Down Expand Up @@ -662,13 +658,15 @@ test_expect_success 'fsck --name-objects' '
git init name-objects &&
(
cd name-objects &&
git config core.logAllRefUpdates false &&
test_commit julius caesar.t &&
test_commit augustus &&
test_commit caesar &&
test_commit augustus44 &&
test_commit caesar &&
remove_object $(git rev-parse julius:caesar.t) &&
test_must_fail git fsck --name-objects >out &&
tree=$(git rev-parse --verify julius:) &&
test_i18ngrep "$tree (refs/tags/julius:" out
git tag -d julius &&
test_must_fail git fsck --name-objects >out &&
test_i18ngrep "$tree (refs/tags/augustus44\\^:" out
)
'

Expand Down

0 comments on commit 9e634a9

Please sign in to comment.