From: René Scharfe Date: Mon, 13 Feb 2023 21:10:45 +0000 (+0100) Subject: test-ctype: test islower and isupper X-Git-Tag: v2.40.0-rc0~4^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c17de8b37c52850261e173ba98306fadd5d5aa1;p=thirdparty%2Fgit.git test-ctype: test islower and isupper Test the character classifiers added by 43ccdf56ec (ctype: implement islower/isupper macro, 2012-02-10). Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-ctype.c b/t/helper/test-ctype.c index caf586649f..8ac76e93e4 100644 --- a/t/helper/test-ctype.c +++ b/t/helper/test-ctype.c @@ -53,6 +53,8 @@ int cmd__ctype(int argc, const char **argv) TEST_CLASS(is_regex_special, "$()*+.?[\\^{|"); TEST_CLASS(is_pathspec_magic, "!\"#%&',-/:;<=>@_`~"); TEST_CLASS(isascii, ASCII); + TEST_CLASS(islower, LOWER); + TEST_CLASS(isupper, UPPER); return rc; }