Lines Matching refs:op
29 const char *op) in test_fail_message_prefix() argument
34 if (op != NULL) { in test_fail_message_prefix()
36 test_printf_stderr("'%s %s %s' failed", left, op, right); in test_fail_message_prefix()
38 test_printf_stderr("'%s'", op); in test_fail_message_prefix()
71 const char *right, const char *op,
78 const char *op, const char *fmt, va_list ap) in test_fail_message_va() argument
80 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_message_va()
91 const char *op, const char *fmt, ...) in test_fail_message() argument
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap); in test_fail_message()
211 #define DEFINE_COMPARISON(type, name, opname, op, fmt) \ argument
216 if (t1 op t2) \
218 test_fail_message(NULL, file, line, #type, s1, s2, #op, \
360 #define DEFINE_BN_COMPARISONS(opname, op, zero_cond) \ argument
365 if (BN_cmp(t1, t2) op 0) \
368 #op, t1, t2); \
377 s, "0", #op, a); \
450 #define DEFINE_TIME_T_COMPARISON(opname, op) \ argument
458 && ASN1_TIME_compare(at1, at2) op 0; \
460 test_fail_message(NULL, file, line, "time_t", s1, s2, #op, \