Lines Matching refs:FAIL
56 #define FAIL(str, args...) \ macro
106 FAIL ("isupper ('\\0') is true"); in do_test()
108 FAIL ("islower ('\\0') is true"); in do_test()
110 FAIL ("isalpha ('\\0') is true"); in do_test()
112 FAIL ("isdigit ('\\0') is true"); in do_test()
114 FAIL ("isxdigit ('\\0') is true"); in do_test()
116 FAIL ("isspace ('\\0') is true"); in do_test()
118 FAIL ("isprint ('\\0') is true"); in do_test()
120 FAIL ("isgraph ('\\0') is true"); in do_test()
122 FAIL ("isblank ('\\0') is true"); in do_test()
124 FAIL ("iscntrl ('\\0') not true"); in do_test()
126 FAIL ("ispunct ('\\0') is true"); in do_test()
128 FAIL ("isalnum ('\\0') is true"); in do_test()
133 FAIL ("islower ('%c') not true", *cp); in do_test()
136 FAIL ("islower ('%c') is true", *cp); in do_test()
139 FAIL ("islower ('%c') is true", *cp); in do_test()
142 FAIL ("islower ('\\x%02x') is true", *cp); in do_test()
147 FAIL ("isupper ('%c') is true", *cp); in do_test()
150 FAIL ("isupper ('%c') not true", *cp); in do_test()
153 FAIL ("isupper ('%c') is true", *cp); in do_test()
156 FAIL ("isupper ('\\x%02x') is true", *cp); in do_test()
161 FAIL ("isalpha ('%c') not true", *cp); in do_test()
164 FAIL ("isalpha ('%c') not true", *cp); in do_test()
167 FAIL ("isalpha ('%c') is true", *cp); in do_test()
170 FAIL ("isalpha ('\\x%02x') is true", *cp); in do_test()
175 FAIL ("isdigit ('%c') is true", *cp); in do_test()
178 FAIL ("isdigit ('%c') is true", *cp); in do_test()
181 FAIL ("isdigit ('%c') not true", *cp); in do_test()
184 FAIL ("isdigit ('\\x%02x') is true", *cp); in do_test()
190 FAIL ("isxdigit ('%c') %s true", *cp, cp - upper < 6 ? "not" : "is"); in do_test()
194 FAIL ("isxdigit ('%c') %s true", *cp, cp - upper < 6 ? "not" : "is"); in do_test()
197 FAIL ("isxdigit ('%c') not true", *cp); in do_test()
200 FAIL ("isxdigit ('\\x%02x') is true", *cp); in do_test()
205 FAIL ("isspace ('%c') is true", *cp); in do_test()
208 FAIL ("isspace ('%c') is true", *cp); in do_test()
211 FAIL ("isspace ('%c') is true", *cp); in do_test()
216 FAIL ("isspace ('\\x%02x') %s true", *cp, in do_test()
222 FAIL ("isprint ('%c') not true", *cp); in do_test()
225 FAIL ("isprint ('%c') not true", *cp); in do_test()
228 FAIL ("isprint ('%c') not true", *cp); in do_test()
232 FAIL ("isprint ('\\x%02x') is true", *cp); in do_test()
237 FAIL ("isgraph ('%c') not true", *cp); in do_test()
240 FAIL ("isgraph ('%c') not true", *cp); in do_test()
243 FAIL ("isgraph ('%c') not true", *cp); in do_test()
246 FAIL ("isgraph ('\\x%02x') is true", *cp); in do_test()
251 FAIL ("isblank ('%c') is true", *cp); in do_test()
254 FAIL ("isblank ('%c') is true", *cp); in do_test()
257 FAIL ("isblank ('%c') is true", *cp); in do_test()
261 FAIL ("isblank ('\\x%02x') %s true", *cp, *cp != '\x09' ? "is" : "not"); in do_test()
266 FAIL ("iscntrl ('%c') is true", *cp); in do_test()
269 FAIL ("iscntrl ('%c') is true", *cp); in do_test()
272 FAIL ("iscntrl ('%c') is true", *cp); in do_test()
276 FAIL ("iscntrl ('\\x%02x') not true", *cp); in do_test()
281 FAIL ("ispunct ('%c') is true", *cp); in do_test()
284 FAIL ("ispunct ('%c') is true", *cp); in do_test()
287 FAIL ("ispunct ('%c') is true", *cp); in do_test()
290 FAIL ("ispunct ('\\x%02x') is true", *cp); in do_test()
295 FAIL ("isalnum ('%c') not true", *cp); in do_test()
298 FAIL ("isalnum ('%c') not true", *cp); in do_test()
301 FAIL ("isalnum ('%c') not true", *cp); in do_test()
304 FAIL ("isalnum ('\\x%02x') is true", *cp); in do_test()
310 FAIL ("tolower ('%c') != '%c'", *cp, *cp); in do_test()
313 FAIL ("tolower ('%c') != '%c'", *cp, *cp2); in do_test()
316 FAIL ("tolower ('%c') != '%c'", *cp, *cp); in do_test()
319 FAIL ("tolower ('\\x%02x') != '\\x%02x'", *cp, *cp); in do_test()
324 FAIL ("toupper ('%c') != '%c'", *cp, *cp2); in do_test()
327 FAIL ("toupper ('%c') != '%c'", *cp, *cp); in do_test()
330 FAIL ("toupper ('%c') != '%c'", *cp, *cp); in do_test()
333 FAIL ("toupper ('\\x%02x') != '\\x%02x'", *cp, *cp); in do_test()