Skip to content

Commit 9861932

Browse files
committed
Merge branch 'rs/ctype-test'
Test safe_ctype * rs/ctype-test: test-ctype: test iscntrl, ispunct, isxdigit and isprint test-ctype: test islower and isupper test-ctype: test isascii
2 parents 06dd2ba + 567342f commit 9861932

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

t/helper/test-ctype.c

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ static void report_error(const char *class, int ch)
1111

1212
static int is_in(const char *s, int ch)
1313
{
14-
/* We can't find NUL using strchr. It's classless anyway. */
14+
/*
15+
* We can't find NUL using strchr. Accept it as the first
16+
* character in the spec -- there are no empty classes.
17+
*/
1518
if (ch == '\0')
16-
return 0;
19+
return ch == *s;
20+
if (*s == '\0')
21+
s++;
1722
return !!strchr(s, ch);
1823
}
1924

@@ -28,6 +33,20 @@ static int is_in(const char *s, int ch)
2833
#define DIGIT "0123456789"
2934
#define LOWER "abcdefghijklmnopqrstuvwxyz"
3035
#define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
36+
#define PUNCT "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
37+
#define ASCII \
38+
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" \
39+
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" \
40+
"\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f" \
41+
"\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f" \
42+
"\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f" \
43+
"\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f" \
44+
"\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f" \
45+
"\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"
3150

3251
int cmd__ctype(int argc, const char **argv)
3352
{
@@ -38,6 +57,13 @@ int cmd__ctype(int argc, const char **argv)
3857
TEST_CLASS(is_glob_special, "*?[\\");
3958
TEST_CLASS(is_regex_special, "$()*+.?[\\^{|");
4059
TEST_CLASS(is_pathspec_magic, "!\"#%&',-/:;<=>@_`~");
60+
TEST_CLASS(isascii, ASCII);
61+
TEST_CLASS(islower, LOWER);
62+
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 " ");
4167

4268
return rc;
4369
}

0 commit comments

Comments
 (0)