From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Spiers Subject: [PATCH v4 3/6] Color skipped tests blue Date: Wed, 19 Sep 2012 21:24:23 +0100 Message-ID: <1348086263-27555-1-git-send-email-git@adamspiers.org> References: <20120919201326.GA23016@sigill.intra.peff.net> Cc: Junio C Hamano , Jeff King , Stefano Lattarini To: git list X-From: git-owner@vger.kernel.org Wed Sep 19 22:24:36 2012 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TEQp0-00070A-DE for gcvg-git-2@plane.gmane.org; Wed, 19 Sep 2012 22:24:34 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751777Ab2ISUY0 (ORCPT ); Wed, 19 Sep 2012 16:24:26 -0400 Received: from coral.adamspiers.org ([85.119.82.20]:45140 "EHLO coral.adamspiers.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751720Ab2ISUYZ (ORCPT ); Wed, 19 Sep 2012 16:24:25 -0400 Received: from localhost (f.8.b.2.1.5.e.f.f.f.4.f.0.4.2.0.0.0.0.0.b.1.4.6.0.b.8.0.1.0.0.2.ip6.arpa [IPv6:2001:8b0:641b:0:240:f4ff:fe51:2b8f]) by coral.adamspiers.org (Postfix) with ESMTPSA id 234482E39E; Wed, 19 Sep 2012 21:24:24 +0100 (BST) X-Mailer: git-send-email 1.7.12.147.g6d168f4 In-Reply-To: <20120919201326.GA23016@sigill.intra.peff.net> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Skipped tests indicate incomplete test coverage. Whilst this is not a test failure or other error, it's still not complete success, so according to the universal traffic lights coloring scheme, yellow/brown seems more suitable than green. However, it's more informational than cautionary, so instead we use blue which is a universal color for information signs. Signed-off-by: Adam Spiers --- t/test-lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index 5293830..78c88c2 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -182,13 +182,13 @@ then error) tput bold; tput setaf 1;; # bold red skip) - tput bold; tput setaf 2;; # bold green + tput setaf 4;; # blue warn) tput bold; tput setaf 3;; # bold yellow pass) tput setaf 2;; # green info) - tput setaf 3;; # brown + tput setaf 3;; # yellow/brown *) test -n "$quiet" && return;; esac -- 1.7.12.147.g6d168f4