File: test-ctype.c

package info (click to toggle)
git 1%3A1.7.2.5-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 18,036 kB
  • ctags: 13,298
  • sloc: ansic: 108,217; sh: 74,973; perl: 23,370; tcl: 20,137; python: 3,843; makefile: 2,885; lisp: 1,779; asm: 98
file content (78 lines) | stat: -rw-r--r-- 1,419 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "cache.h"


static int test_isdigit(int c)
{
	return isdigit(c);
}

static int test_isspace(int c)
{
	return isspace(c);
}

static int test_isalpha(int c)
{
	return isalpha(c);
}

static int test_isalnum(int c)
{
	return isalnum(c);
}

static int test_is_glob_special(int c)
{
	return is_glob_special(c);
}

static int test_is_regex_special(int c)
{
	return is_regex_special(c);
}

#define DIGIT "0123456789"
#define LOWER "abcdefghijklmnopqrstuvwxyz"
#define UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

static const struct ctype_class {
	const char *name;
	int (*test_fn)(int);
	const char *members;
} classes[] = {
	{ "isdigit", test_isdigit, DIGIT },
	{ "isspace", test_isspace, " \n\r\t" },
	{ "isalpha", test_isalpha, LOWER UPPER },
	{ "isalnum", test_isalnum, LOWER UPPER DIGIT },
	{ "is_glob_special", test_is_glob_special, "*?[\\" },
	{ "is_regex_special", test_is_regex_special, "$()*+.?[\\^{|" },
	{ NULL }
};

static int test_class(const struct ctype_class *test)
{
	int i, rc = 0;

	for (i = 0; i < 256; i++) {
		int expected = i ? !!strchr(test->members, i) : 0;
		int actual = test->test_fn(i);

		if (actual != expected) {
			rc = 1;
			printf("%s classifies char %d (0x%02x) wrongly\n",
			       test->name, i, i);
		}
	}
	return rc;
}

int main(int argc, char **argv)
{
	const struct ctype_class *test;
	int rc = 0;

	for (test = classes; test->name; test++)
		rc |= test_class(test);

	return rc;
}