Skip to content

Commit f5fa75a

Browse files
committed
Merge branch 'rs/t6300-compressed-size-fix' into maint-2.43
Test fix. * rs/t6300-compressed-size-fix: t6300: avoid hard-coding object sizes
2 parents bb58c03 + fbc6526 commit f5fa75a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

t/t6300-for-each-ref.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ setdate_and_increment () {
2020
export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
2121
}
2222

23-
test_expect_success setup '
24-
test_oid_cache <<-EOF &&
25-
disklen sha1:138
26-
disklen sha256:154
27-
EOF
23+
test_object_file_size () {
24+
oid=$(git rev-parse "$1")
25+
path=".git/objects/$(test_oid_to_path $oid)"
26+
test_file_size "$path"
27+
}
2828

29+
test_expect_success setup '
2930
# setup .mailmap
3031
cat >.mailmap <<-EOF &&
3132
@@ -94,7 +95,6 @@ test_atom () {
9495
}
9596

9697
hexlen=$(test_oid hexsz)
97-
disklen=$(test_oid disklen)
9898

9999
test_atom head refname refs/heads/main
100100
test_atom head refname: refs/heads/main
@@ -129,7 +129,7 @@ test_atom head push:strip=1 remotes/myfork/main
129129
test_atom head push:strip=-1 main
130130
test_atom head objecttype commit
131131
test_atom head objectsize $((131 + hexlen))
132-
test_atom head objectsize:disk $disklen
132+
test_atom head objectsize:disk $(test_object_file_size refs/heads/main)
133133
test_atom head deltabase $ZERO_OID
134134
test_atom head objectname $(git rev-parse refs/heads/main)
135135
test_atom head objectname:short $(git rev-parse --short refs/heads/main)
@@ -203,8 +203,8 @@ test_atom tag upstream ''
203203
test_atom tag push ''
204204
test_atom tag objecttype tag
205205
test_atom tag objectsize $((114 + hexlen))
206-
test_atom tag objectsize:disk $disklen
207-
test_atom tag '*objectsize:disk' $disklen
206+
test_atom tag objectsize:disk $(test_object_file_size refs/tags/testtag)
207+
test_atom tag '*objectsize:disk' $(test_object_file_size refs/heads/main)
208208
test_atom tag deltabase $ZERO_OID
209209
test_atom tag '*deltabase' $ZERO_OID
210210
test_atom tag objectname $(git rev-parse refs/tags/testtag)

0 commit comments

Comments
 (0)