mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
t4207: delete replace references via git-update-ref(1)
In t4207 we set up a set of replace objects via git-replace(1). Because these references should not be impacting subsequent tests we also set up some cleanup logic that deletes the replacement references via a call to `rm -rf`. This reaches into the internal implementation details of the reference backend and will thus break when we grow an alternative refdb implementation. Refactor the tests to delete the replacement refs via Git commands so that we become independent of the actual refdb that's in use. As we don't have a nice way to delete all replacements or all references in a certain namespace, we opt for a combination of git-for-each-ref(1) and git-update-ref(1)'s `--stdin` mode. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
c603138e3d
commit
c6429fb867
1 changed files with 8 additions and 2 deletions
|
@ -70,8 +70,14 @@ ${c_tag}tag: ${c_reset}${c_tag}A${c_reset}${c_commit})${c_reset} A
|
|||
cmp_filtered_decorations
|
||||
'
|
||||
|
||||
remove_replace_refs () {
|
||||
git for-each-ref 'refs/replace*/**' --format='delete %(refname)' >in &&
|
||||
git update-ref --stdin <in &&
|
||||
rm in
|
||||
}
|
||||
|
||||
test_expect_success 'test coloring with replace-objects' '
|
||||
test_when_finished rm -rf .git/refs/replace* &&
|
||||
test_when_finished remove_replace_refs &&
|
||||
test_commit C &&
|
||||
test_commit D &&
|
||||
|
||||
|
@ -99,7 +105,7 @@ EOF
|
|||
'
|
||||
|
||||
test_expect_success 'test coloring with grafted commit' '
|
||||
test_when_finished rm -rf .git/refs/replace* &&
|
||||
test_when_finished remove_replace_refs &&
|
||||
|
||||
git replace --graft HEAD HEAD~2 &&
|
||||
|
||||
|
|
Loading…
Reference in a new issue