Lines Matching refs:fmt
72 const char *fmt, ...)
78 const char *op, const char *fmt, va_list ap) in test_fail_message_va() argument
81 if (fmt != NULL) { in test_fail_message_va()
82 test_vprintf_stderr(fmt, ap); in test_fail_message_va()
91 const char *op, const char *fmt, ...) in test_fail_message() argument
95 va_start(ap, fmt); in test_fail_message()
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap); in test_fail_message()
147 void test_note(const char *fmt, ...) in test_note() argument
149 if (fmt != NULL) { in test_note()
152 va_start(ap, fmt); in test_note()
153 test_vprintf_stderr(fmt, ap); in test_note()
211 #define DEFINE_COMPARISON(type, name, opname, op, fmt) \ argument
219 "[" fmt "] compared to [" fmt "]", \
224 #define DEFINE_COMPARISONS(type, name, fmt) \ argument
225 DEFINE_COMPARISON(type, name, eq, ==, fmt) \
226 DEFINE_COMPARISON(type, name, ne, !=, fmt) \
227 DEFINE_COMPARISON(type, name, lt, <, fmt) \
228 DEFINE_COMPARISON(type, name, le, <=, fmt) \
229 DEFINE_COMPARISON(type, name, gt, >, fmt) \
230 DEFINE_COMPARISON(type, name, ge, >=, fmt)