Lines Matching defs:desc

50  * |desc| is a printf formatted description with arguments |args| that is
51 * supplied by the user and |desc| can be NULL. |type| is the data type
100 void test_info_c90(const char *desc, ...)
104 va_start(ap, desc);
105 test_fail_message_va("INFO", NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
109 void test_info(const char *file, int line, const char *desc, ...)
113 va_start(ap, desc);
114 test_fail_message_va("INFO", file, line, NULL, NULL, NULL, NULL, desc, ap);
118 void test_error_c90(const char *desc, ...)
122 va_start(ap, desc);
123 test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
128 void test_error(const char *file, int line, const char *desc, ...)
132 va_start(ap, desc);
133 test_fail_message_va(NULL, file, line, NULL, NULL, NULL, NULL, desc, ap);
161 int test_skip(const char *file, int line, const char *desc, ...)
165 va_start(ap, desc);
166 test_fail_message_va("SKIP", file, line, NULL, NULL, NULL, NULL, desc, ap);
171 int test_skip_c90(const char *desc, ...)
175 va_start(ap, desc);
176 test_fail_message_va("SKIP", NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
195 * int test_name_eq(const type t1, const type t2, const char *desc, ...);
196 * int test_name_ne(const type t1, const type t2, const char *desc, ...);
197 * int test_name_lt(const type t1, const type t2, const char *desc, ...);
198 * int test_name_le(const type t1, const type t2, const char *desc, ...);
199 * int test_name_gt(const type t1, const type t2, const char *desc, ...);
200 * int test_name_ge(const type t1, const type t2, const char *desc, ...);
208 * The desc argument is a printf format string followed by its arguments and