Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-02-22 03:14:37 +0400
committerJunio C Hamano <gitster@pobox.com>2012-02-22 03:14:37 +0400
commitc7707a4354f36c59f3310d4edfb18377c064220e (patch)
treee77a6031b8e1f5b700d334389a3235313d4d642f /t
parent0cfba96121b9617668a7b4ad18e3ae3a19dc8755 (diff)
parent01fdc21f6e90f56fc5a49cbba751d9ead19b2f03 (diff)
Merge branch 'cb/transfer-no-progress' into maint
* cb/transfer-no-progress: push/fetch/clone --no-progress suppresses progress output
Diffstat (limited to 't')
-rwxr-xr-xt/t5523-push-upstream.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t5523-push-upstream.sh b/t/t5523-push-upstream.sh
index 9ee52cfc45..3683df13a6 100755
--- a/t/t5523-push-upstream.sh
+++ b/t/t5523-push-upstream.sh
@@ -101,10 +101,11 @@ test_expect_success TTY 'push -q suppresses progress' '
! grep "Writing objects" err
'
-test_expect_failure TTY 'push --no-progress suppresses progress' '
+test_expect_success TTY 'push --no-progress suppresses progress' '
ensure_fresh_upstream &&
test_terminal git push -u --no-progress upstream master >out 2>err &&
+ ! grep "Unpacking objects" err &&
! grep "Writing objects" err
'