diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-11-28 04:13:44 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-11-28 04:13:45 +0100 |
commit | 399a9f31f72eacaf53caaa8200cf7e5b19da31b4 (patch) | |
tree | 2b3f324eccf0e2c30566a82026a49d07ad5fb14b /t/t5516-fetch-push.sh | |
parent | Merge branch 'ew/prune-with-missing-objects-pack' (diff) | |
parent | t5516: fail to run in verbose mode (diff) | |
download | git-399a9f31f72eacaf53caaa8200cf7e5b19da31b4.tar.xz git-399a9f31f72eacaf53caaa8200cf7e5b19da31b4.zip |
Merge branch 'zk/push-use-bitmaps'
Test fix.
* zk/push-use-bitmaps:
t5516: fail to run in verbose mode
Diffstat (limited to 't/t5516-fetch-push.sh')
-rwxr-xr-x | t/t5516-fetch-push.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh index 4f2bfaf005..98a27a2948 100755 --- a/t/t5516-fetch-push.sh +++ b/t/t5516-fetch-push.sh @@ -1858,19 +1858,19 @@ test_expect_success 'push with config push.useBitmaps' ' git checkout main && test_unconfig push.useBitmaps && GIT_TRACE2_EVENT="$PWD/default" \ - git push testrepo main:test && + git push --quiet testrepo main:test && test_subcommand git pack-objects --all-progress-implied --revs --stdout \ --thin --delta-base-offset -q <default && test_config push.useBitmaps true && GIT_TRACE2_EVENT="$PWD/true" \ - git push testrepo main:test2 && + git push --quiet testrepo main:test2 && test_subcommand git pack-objects --all-progress-implied --revs --stdout \ --thin --delta-base-offset -q <true && test_config push.useBitmaps false && GIT_TRACE2_EVENT="$PWD/false" \ - git push testrepo main:test3 && + git push --quiet testrepo main:test3 && test_subcommand git pack-objects --all-progress-implied --revs --stdout \ --thin --delta-base-offset -q --no-use-bitmap-index <false ' |