diff options
author | Adam Spiers <git@adamspiers.org> | 2012-12-16 18:28:11 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-20 14:22:12 -0800 |
commit | b8fc855a7804426528c872e6c9ecd39a2897d427 (patch) | |
tree | 8a3df6a7dce41987b1f27ead6b50c53a03a1ef58 /t/test-lib.sh | |
parent | e8e5195573bc0f314ccc288f7d009b47e4440760 (diff) | |
download | git-b8fc855a7804426528c872e6c9ecd39a2897d427.tar.gz |
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 <git@adamspiers.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 72aafd0fb4..f32df80c07 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) |