diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-22 11:38:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-22 11:38:42 -0700 |
commit | c4125fccb4c310b440ef6b0d4ed3c8cb651e1afa (patch) | |
tree | d16eae7f6485892c92a03ed388bf4e3c616f8610 /t/t5601-clone.sh | |
parent | 2ecb573bb3aa9b409e2a74d82bee560ef77b101b (diff) | |
parent | 643f918d13906cbccdc5ad188767fc7895e30fc1 (diff) | |
download | git-c4125fccb4c310b440ef6b0d4ed3c8cb651e1afa.tar.gz |
Merge branch 'jk/clone-progress-to-stderr' into jc/upload-pack-send-symref
* jk/clone-progress-to-stderr:
clone: always set transport options
clone: treat "checking connectivity" like other progress
clone: send diagnostic messages to stderr
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-x | t/t5601-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index ccda6dfb4c..f8e5a9a4ae 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -36,7 +36,7 @@ test_expect_success 'clone with excess parameters (2)' ' test_expect_success C_LOCALE_OUTPUT 'output from clone' ' rm -fr dst && - git clone -n "file://$(pwd)/src" dst >output && + git clone -n "file://$(pwd)/src" dst >output 2>&1 && test $(grep Clon output | wc -l) = 1 ' |