diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2011-07-26 23:39:03 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-07-28 12:48:26 -0700 |
commit | 7e60407f7a36bd1f7fd505f9aa9580a837fbb190 (patch) | |
tree | d651cda63afbd15251c74bd1a8db516ee051bd9b /t/t7400-submodule-basic.sh | |
parent | tests: print failed test numbers at the end of the test run (diff) | |
download | tgif-7e60407f7a36bd1f7fd505f9aa9580a837fbb190.tar.xz |
submodule: update and add must honor --quiet flag
When using the --quiet flag "git submodule update" and "git submodule add"
didn't behave as the documentation stated. They printed progress output
from the clone, even though they should only print error messages.
Fix that by passing the -q flag to git clone in module_clone() when the
GIT_QUIET variable is set. Two tests in t7400 have been modified to test
that behavior.
Reported-by: Daniel Holtmann-Rice <flyingtabmow@gmail.com>
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7400-submodule-basic.sh')
-rwxr-xr-x | t/t7400-submodule-basic.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh index 874279e32d..f086db1073 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -75,7 +75,8 @@ test_expect_success 'submodule add' ' ( cd addtest && - git submodule add "$submodurl" submod && + git submodule add -q "$submodurl" submod >actual && + test ! -s actual && git submodule init ) && @@ -273,7 +274,8 @@ test_expect_success 'update should work when path is an empty dir' ' echo "$rev1" >expect && mkdir init && - git submodule update && + git submodule update -q >update.out && + test ! -s update.out && inspect init && test_cmp expect head-sha1 |