From 1ece127467c1d65062f17777b1eedcd84fd9ea69 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Wed, 24 Oct 2007 22:03:39 +0200 Subject: [PATCH] Support a --quiet option in the test-suite. This shuts down the "* ok ##: `test description`" messages. Signed-off-by: Pierre Habouzit Signed-off-by: Junio C Hamano --- t/test-lib.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index 66efcdaacd..714de6e575 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -80,6 +80,8 @@ do exit 0 ;; -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose) verbose=t; shift ;; + -q|--q|--qu|--qui|--quie|--quiet) + quiet=t; shift ;; --no-color) color=; shift ;; --no-python) @@ -97,7 +99,7 @@ if test -n "$color"; then skip) tput bold; tput setaf 2;; # bold green pass) tput setaf 2;; # green info) tput setaf 3;; # brown - *);; + *) test -n "$quiet" && return;; esac shift echo "* $*" @@ -105,6 +107,7 @@ if test -n "$color"; then } else say_color() { + test -z "$1" && test -n "$quiet" && return shift echo "* $*" } -- 2.11.4.GIT