mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
9 lines
260 B
Bash
9 lines
260 B
Bash
|
# test_midx_consistent <objdir>
|
||
|
test_midx_consistent () {
|
||
|
ls $1/pack/pack-*.idx | xargs -n 1 basename | sort >expect &&
|
||
|
test-tool read-midx $1 | grep ^pack-.*\.idx$ | sort >actual &&
|
||
|
|
||
|
test_cmp expect actual &&
|
||
|
git multi-pack-index --object-dir=$1 verify
|
||
|
}
|