Lines Matching refs:desc
99 void test_info_c90(const char *desc, ...) in test_info_c90() argument
103 va_start(ap, desc); in test_info_c90()
104 test_fail_message_va("INFO", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_info_c90()
108 void test_info(const char *file, int line, const char *desc, ...) in test_info() argument
112 va_start(ap, desc); in test_info()
113 test_fail_message_va("INFO", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_info()
117 void test_error_c90(const char *desc, ...) in test_error_c90() argument
121 va_start(ap, desc); in test_error_c90()
122 test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_error_c90()
127 void test_error(const char *file, int line, const char *desc, ...) in test_error() argument
131 va_start(ap, desc); in test_error()
132 test_fail_message_va(NULL, file, line, NULL, NULL, NULL, NULL, desc, ap); in test_error()
160 int test_skip(const char *file, int line, const char *desc, ...) in test_skip() argument
164 va_start(ap, desc); in test_skip()
165 test_fail_message_va("SKIP", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_skip()
170 int test_skip_c90(const char *desc, ...) in test_skip_c90() argument
174 va_start(ap, desc); in test_skip_c90()
175 test_fail_message_va("SKIP", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_skip_c90()