summaryrefslogtreecommitdiff
path: root/t/helper/test-ctype.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2023-02-13 22:10:45 +0100
committerJunio C Hamano <gitster@pobox.com>2023-02-13 13:36:05 -0800
commit2c17de8b37c52850261e173ba98306fadd5d5aa1 (patch)
treef207462b7ec251367a9f5f4befad61cac71d6934 /t/helper/test-ctype.c
parentd5071be5ed7c2d60fe98e41b46a142f42a36caac (diff)
downloadgit-2c17de8b37c52850261e173ba98306fadd5d5aa1.tar.gz
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 <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/helper/test-ctype.c')
-rw-r--r--t/helper/test-ctype.c2
1 files changed, 2 insertions, 0 deletions
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;
}