diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-25 12:23:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-25 12:23:19 -0700 |
commit | 25f3119000ab8b98cb54e9925f4e307a5dab2f87 (patch) | |
tree | 6e655c84ad726de98d3d6b929e1171727d41246b /t/perf | |
parent | Merge branch 'nd/init-restore-env' (diff) | |
parent | t7700: drop explicit --no-pack-kept-objects from .keep test (diff) | |
download | tgif-25f3119000ab8b98cb54e9925f4e307a5dab2f87.tar.xz |
Merge branch 'jk/repack-pack-writebitmaps-config'
* jk/repack-pack-writebitmaps-config:
t7700: drop explicit --no-pack-kept-objects from .keep test
repack: introduce repack.writeBitmaps config option
repack: simplify handling of --write-bitmap-index
pack-objects: stop respecting pack.writebitmaps
Diffstat (limited to 't/perf')
-rwxr-xr-x | t/perf/p5310-pack-bitmaps.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/perf/p5310-pack-bitmaps.sh b/t/perf/p5310-pack-bitmaps.sh index 685d46f8b7..f8ed8573b7 100755 --- a/t/perf/p5310-pack-bitmaps.sh +++ b/t/perf/p5310-pack-bitmaps.sh @@ -8,6 +8,9 @@ test_perf_large_repo # note that we do everything through config, # since we want to be able to compare bitmap-aware # git versus non-bitmap git +# +# We intentionally use the deprecated pack.writebitmaps +# config so that we can test against older versions of git. test_expect_success 'setup bitmap config' ' git config pack.writebitmaps true && git config pack.writebitmaphashcache true |