Skip to content

Commit 567342f

Browse files
rscharfegitster
authored andcommitted
test-ctype: test iscntrl, ispunct, isxdigit and isprint
Test the character classifiers added by 1c149ab (ctype: support iscntrl, ispunct, isxdigit and isprint, 2012-10-15) and 0fcec2c (format-patch: make rfc2047 encoding more strict, 2012-10-18). Signed-off-by: René Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2c17de8 commit 567342f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

t/helper/test-ctype.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ static int is_in(const char *s, int ch)
3333
#define DIGIT "0123456789"
3434
#define LOWER "abcdefghijklmnopqrstuvwxyz"
3535
#define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
36+
#define PUNCT "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
3637
#define ASCII \
3738
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" \
3839
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \
@@ -42,6 +43,10 @@ static int is_in(const char *s, int ch)
4243
"\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" \
4344
"\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" \
4445
"\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f"
46+
#define CNTRL \
47+
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" \
48+
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \
49+
"\x7f"
4550

4651
int cmd__ctype(int argc, const char **argv)
4752
{
@@ -55,6 +60,10 @@ int cmd__ctype(int argc, const char **argv)
5560
TEST_CLASS(isascii, ASCII);
5661
TEST_CLASS(islower, LOWER);
5762
TEST_CLASS(isupper, UPPER);
63+
TEST_CLASS(iscntrl, CNTRL);
64+
TEST_CLASS(ispunct, PUNCT);
65+
TEST_CLASS(isxdigit, DIGIT "abcdefABCDEF");
66+
TEST_CLASS(isprint, LOWER UPPER DIGIT PUNCT " ");
5867

5968
return rc;
6069
}

0 commit comments

Comments
 (0)