From: Stefan Beller Date: Tue, 14 Aug 2018 01:41:15 +0000 (-0700) Subject: test_decode_color: understand FAINT and ITALIC X-Git-Tag: v2.20.0-rc0~243^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=991eb4fc6ab1942cbd86060da2846813d990459e;p=thirdparty%2Fgit.git test_decode_color: understand FAINT and ITALIC Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 2b2181dca0..be8244c47b 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -42,6 +42,8 @@ test_decode_color () { function name(n) { if (n == 0) return "RESET"; if (n == 1) return "BOLD"; + if (n == 2) return "FAINT"; + if (n == 3) return "ITALIC"; if (n == 7) return "REVERSE"; if (n == 30) return "BLACK"; if (n == 31) return "RED";