mirror of
https://github.com/git/git.git
synced 2024-10-30 13:57:54 +01:00
cache-tree: subdirectory tests
Add tests to confirm that invalidation of subdirectories neither over- nor under-invalidates. Signed-off-by: David Turner <dturner@twitter.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
969dd8c612
commit
59a8adb6fb
1 changed files with 23 additions and 3 deletions
|
@ -22,9 +22,10 @@ test_shallow_cache_tree () {
|
||||||
}
|
}
|
||||||
|
|
||||||
test_invalid_cache_tree () {
|
test_invalid_cache_tree () {
|
||||||
echo "invalid (0 subtrees)" >expect &&
|
printf "invalid %s ()\n" "" "$@" >expect &&
|
||||||
printf "SHA #(ref) (%d entries, 0 subtrees)\n" $(git ls-files|wc -l) >>expect &&
|
test-dump-cache-tree | \
|
||||||
cmp_cache_tree expect
|
sed -n -e "s/[0-9]* subtrees//" -e '/#(ref)/d' -e '/^invalid /p' >actual &&
|
||||||
|
test_cmp expect actual
|
||||||
}
|
}
|
||||||
|
|
||||||
test_no_cache_tree () {
|
test_no_cache_tree () {
|
||||||
|
@ -49,6 +50,25 @@ test_expect_success 'git-add invalidates cache-tree' '
|
||||||
test_invalid_cache_tree
|
test_invalid_cache_tree
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 'git-add in subdir invalidates cache-tree' '
|
||||||
|
test_when_finished "git reset --hard; git read-tree HEAD" &&
|
||||||
|
mkdir dirx &&
|
||||||
|
echo "I changed this file" >dirx/foo &&
|
||||||
|
git add dirx/foo &&
|
||||||
|
test_invalid_cache_tree
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'git-add in subdir does not invalidate sibling cache-tree' '
|
||||||
|
git tag no-children &&
|
||||||
|
test_when_finished "git reset --hard no-children; git read-tree HEAD" &&
|
||||||
|
mkdir dir1 dir2 &&
|
||||||
|
test_commit dir1/a &&
|
||||||
|
test_commit dir2/b &&
|
||||||
|
echo "I changed this file" >dir1/a &&
|
||||||
|
git add dir1/a &&
|
||||||
|
test_invalid_cache_tree dir1/
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'update-index invalidates cache-tree' '
|
test_expect_success 'update-index invalidates cache-tree' '
|
||||||
test_when_finished "git reset --hard; git read-tree HEAD" &&
|
test_when_finished "git reset --hard; git read-tree HEAD" &&
|
||||||
echo "I changed this file" >foo &&
|
echo "I changed this file" >foo &&
|
||||||
|
|
Loading…
Reference in a new issue