Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2022-01-26 01:41:15 +0300
committerJunio C Hamano <gitster@pobox.com>2022-01-27 23:07:53 +0300
commita80f0f91b1d6586abe0b37d19c0bd60ce1843571 (patch)
tree6d342b015e50758fab019ad8c819a9764e5f7031 /t/lib-bitmap.sh
parent791170fa2b23cfc49ae0e5949b1f301431a6058b (diff)
t/lib-bitmap.sh: parameterize tests over reverse index source
To prepare for reading the reverse index data out of the MIDX itself, teach the `test_rev_exists` function to take an expected "source" for the reverse index data. When given "rev", it asserts that the MIDX's `.rev` file exists, and is loaded when verifying the integrity of its bitmaps. Otherwise, it ensures that trace2 reports the source of the reverse index data as the same string which was given to test_rev_exists(). The following patch will implement reading the reverse index data from the MIDX itself. Signed-off-by: Taylor Blau <me@ttaylorr.com> Reviewed-by: Derrick Stolee <dstolee@microsoft.com> Reviewed-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-bitmap.sh')
-rw-r--r--t/lib-bitmap.sh20
1 files changed, 14 insertions, 6 deletions
diff --git a/t/lib-bitmap.sh b/t/lib-bitmap.sh
index 48a8730a13..253895c04e 100644
--- a/t/lib-bitmap.sh
+++ b/t/lib-bitmap.sh
@@ -275,17 +275,23 @@ midx_pack_source () {
test_rev_exists () {
commit="$1"
+ kind="$2"
- test_expect_success 'reverse index exists' '
+ test_expect_success "reverse index exists ($kind)" '
GIT_TRACE2_EVENT=$(pwd)/event.trace \
git rev-list --test-bitmap "$commit" &&
- test_path_is_file $midx-$(midx_checksum $objdir).rev &&
- grep "\"category\":\"load_midx_revindex\",\"key\":\"source\",\"value\":\"rev\"" event.trace
+ if test "rev" = "$kind"
+ then
+ test_path_is_file $midx-$(midx_checksum $objdir).rev
+ fi &&
+ grep "\"category\":\"load_midx_revindex\",\"key\":\"source\",\"value\":\"$kind\"" event.trace
'
}
midx_bitmap_core () {
+ rev_kind="${1:-rev}"
+
setup_bitmap_history
test_expect_success 'create single-pack midx with bitmaps' '
@@ -295,7 +301,7 @@ midx_bitmap_core () {
test_path_is_file $midx-$(midx_checksum $objdir).bitmap
'
- test_rev_exists HEAD
+ test_rev_exists HEAD "$rev_kind"
basic_bitmap_tests
@@ -325,7 +331,7 @@ midx_bitmap_core () {
test_path_is_file $midx-$(midx_checksum $objdir).bitmap
'
- test_rev_exists HEAD
+ test_rev_exists HEAD "$rev_kind"
basic_bitmap_tests
@@ -428,6 +434,8 @@ midx_bitmap_core () {
}
midx_bitmap_partial_tests () {
+ rev_kind="${1:-rev}"
+
test_expect_success 'setup partial bitmaps' '
test_commit packed &&
git repack &&
@@ -437,7 +445,7 @@ midx_bitmap_partial_tests () {
test_path_is_file $midx-$(midx_checksum $objdir).bitmap
'
- test_rev_exists HEAD~
+ test_rev_exists HEAD~ "$rev_kind"
basic_bitmap_tests HEAD~
}