summaryrefslogtreecommitdiffstats
path: root/t/t5516-fetch-push.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-11-28 04:13:44 +0100
committerJunio C Hamano <gitster@pobox.com>2022-11-28 04:13:45 +0100
commit399a9f31f72eacaf53caaa8200cf7e5b19da31b4 (patch)
tree2b3f324eccf0e2c30566a82026a49d07ad5fb14b /t/t5516-fetch-push.sh
parentMerge branch 'ew/prune-with-missing-objects-pack' (diff)
parentt5516: fail to run in verbose mode (diff)
downloadgit-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-xt/t5516-fetch-push.sh6
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
'