diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-01-05 14:01:30 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 14:01:30 -0800 |
commit | 88a516aca03e55f174fc1884250be1d0d3fb9fa8 (patch) | |
tree | 8ad963a4f270b9184d6774bcabf8c3a74f783bb3 /t/t7700-repack.sh | |
parent | Merge branch 'jc/merge-detached-head-name' (diff) | |
parent | repack: make '--quiet' disable progress (diff) | |
download | tgif-88a516aca03e55f174fc1884250be1d0d3fb9fa8.tar.xz |
Merge branch 'ds/repack-fixlets'
Two fixes around "git repack".
* ds/repack-fixlets:
repack: make '--quiet' disable progress
repack: respect kept objects with '--write-midx -b'
Diffstat (limited to 't/t7700-repack.sh')
-rwxr-xr-x | t/t7700-repack.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t7700-repack.sh b/t/t7700-repack.sh index 4693f8dc2b..e489869dd9 100755 --- a/t/t7700-repack.sh +++ b/t/t7700-repack.sh @@ -5,6 +5,7 @@ test_description='git repack works correctly' . ./test-lib.sh . "${TEST_DIRECTORY}/lib-bitmap.sh" . "${TEST_DIRECTORY}/lib-midx.sh" +. "${TEST_DIRECTORY}/lib-terminal.sh" commit_and_pack () { test_commit "$@" 1>&2 && @@ -372,4 +373,16 @@ test_expect_success '--write-midx with preferred bitmap tips' ' ) ' +test_expect_success '--write-midx -b packs non-kept objects' ' + GIT_TRACE2_EVENT="$(pwd)/trace.txt" \ + git repack --write-midx -a -b && + test_subcommand_inexact git pack-objects --honor-pack-keep <trace.txt +' + +test_expect_success TTY '--quiet disables progress' ' + test_terminal env GIT_PROGRESS_DELAY=0 \ + git -C midx repack -ad --quiet --write-midx 2>stderr && + test_must_be_empty stderr +' + test_done |