From: Adam Spiers Date: Sun, 16 Dec 2012 18:28:11 +0000 (+0000) Subject: tests: paint skipped tests in blue X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b8fc855a7804426528c872e6c9ecd39a2897d427;p=git.git tests: paint skipped tests in blue Skipped tests indicate incomplete test coverage. Whilst this is not a test failure or other error, it's still not a complete success. Other testsuite related software like automake, autotest and prove seem to use blue for skipped tests, so let's follow suit. Signed-off-by: Adam Spiers Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib.sh b/t/test-lib.sh index 72aafd0fb..f32df80c0 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -182,7 +182,7 @@ then error) tput bold; tput setaf 1;; # bold red skip) - tput bold; tput setaf 2;; # bold green + tput setaf 4;; # blue warn) tput setaf 3;; # brown/yellow pass)