]> granicus.if.org Git - git/commitdiff
t7063: hide stderr from setup inside prereq
authorJeff King <peff@peff.net>
Wed, 27 May 2015 09:34:58 +0000 (05:34 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 May 2015 20:14:29 +0000 (13:14 -0700)
When t7063 starts, it runs "update-index --untracked-cache"
to see if we support the untracked cache. Its output goes
straight to stderr, even if the test is not run with "-v".
Let's wrap it in a prereq that will hide the output by
default, but show it with "-v".

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7063-status-untracked-cache.sh

index 2b2ffd7d6b9181623cd05271ec4ef429235a5e4f..bd4806c12a0a6c09986c65de80ec79b59410ae68 100755 (executable)
@@ -8,10 +8,14 @@ avoid_racy() {
        sleep 1
 }
 
-git update-index --untracked-cache
 # It's fine if git update-index returns an error code other than one,
 # it'll be caught in the first test.
-if test $? -eq 1; then
+test_lazy_prereq UNTRACKED_CACHE '
+       { git update-index --untracked-cache; ret=$?; } &&
+       test $ret -ne 1
+'
+
+if ! test_have_prereq UNTRACKED_CACHE; then
        skip_all='This system does not support untracked cache'
        test_done
 fi