summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2013-09-18 20:05:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-09-18 20:34:12 (GMT)
commit68b939b2f097b6675c4aaa178655559aa81b25cb (patch)
tree1c7fa9e2264491ead3357f6b8b33ae65f56ccb16 /t/t5601-clone.sh
parente230c568c4b9a991e3175e5f65171a566fd8e39c (diff)
downloadgit-68b939b2f097b6675c4aaa178655559aa81b25cb.zip
git-68b939b2f097b6675c4aaa178655559aa81b25cb.tar.gz
git-68b939b2f097b6675c4aaa178655559aa81b25cb.tar.bz2
clone: send diagnostic messages to stderr
Putting messages like "Cloning into.." and "done" on stdout is un-Unix and uselessly clutters the stdout channel. Send them to stderr. We have to tweak two tests to accommodate this: 1. t5601 checks for doubled output due to forking, and doesn't actually care where the output goes; adjust it to check stderr. 2. t5702 is trying to test whether progress output was sent to stderr, but naively does so by checking whether stderr produced any output. Instead, have it look for "%", a token found in progress output but not elsewhere (and which lets us avoid hard-coding the progress text in the test). This should not regress any scripts that try to parse the current output, as the output is already internationalized and therefore unstable. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-xt/t5601-clone.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index 0629149..b3b11e6 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
'