aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/ctype/CMakeLists.txt
blob: 4141708fc2b4e62920079b1b2d2fba0afb5826d8 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
add_libc_testsuite(libc_ctype_unittests)

add_libc_unittest(
  isalnum
  SUITE
    libc_ctype_unittests
  SRCS
    isalnum_test.cpp
  DEPENDS
    libc.src.ctype.isalnum
)

add_libc_unittest(
  isalpha
  SUITE
    libc_ctype_unittests
  SRCS
    isalpha_test.cpp
  DEPENDS
    libc.src.ctype.isalpha
)

add_libc_unittest(
  isblank
  SUITE
    libc_ctype_unittests
  SRCS
    isblank_test.cpp
  DEPENDS
    libc.src.ctype.isblank
)

add_libc_unittest(
  iscntrl
  SUITE
    libc_ctype_unittests
  SRCS
    iscntrl_test.cpp
  DEPENDS
    libc.src.ctype.iscntrl
)

add_libc_unittest(
  isdigit
  SUITE
    libc_ctype_unittests
  SRCS
    isdigit_test.cpp
  DEPENDS
    libc.src.ctype.isdigit
)

add_libc_unittest(
  isgraph
  SUITE
    libc_ctype_unittests
  SRCS
    isgraph_test.cpp
  DEPENDS
    libc.src.ctype.isgraph
)

add_libc_unittest(
  islower
  SUITE
    libc_ctype_unittests
  SRCS
    islower_test.cpp
  DEPENDS
    libc.src.ctype.islower
)

add_libc_unittest(
  isprint
  SUITE
    libc_ctype_unittests
  SRCS
    isprint_test.cpp
  DEPENDS
    libc.src.ctype.isprint
)

add_libc_unittest(
  ispunct
  SUITE
    libc_ctype_unittests
  SRCS
    ispunct_test.cpp
  DEPENDS
    libc.src.ctype.ispunct
)

add_libc_unittest(
  isspace
  SUITE
    libc_ctype_unittests
  SRCS
    isspace_test.cpp
  DEPENDS
    libc.src.ctype.isspace
)

add_libc_unittest(
  isupper
  SUITE
    libc_ctype_unittests
  SRCS
    isupper_test.cpp
  DEPENDS
    libc.src.ctype.isupper
)

add_libc_unittest(
  isxdigit
  SUITE
    libc_ctype_unittests
  SRCS
    isxdigit_test.cpp
  DEPENDS
    libc.src.ctype.isxdigit
)

add_libc_unittest(
  tolower
  SUITE
    libc_ctype_unittests
  SRCS
    tolower_test.cpp
  DEPENDS
    libc.src.ctype.tolower
)

add_libc_unittest(
  toupper
  SUITE
    libc_ctype_unittests
  SRCS
    toupper_test.cpp
  DEPENDS
    libc.src.ctype.toupper
)