Lines Matching refs:msg
71 #define tt_abort_printf(msg) TT_DIE(msg) argument
73 #define tt_abort_msg(msg) TT_DIE(("%s", msg)) argument
77 #define tt_failprint_f(msg) TT_FAIL(msg) argument
79 #define tt_fail_msg(msg) TT_FAIL(("%s", msg)) argument
89 #define tt_want_(b, msg, fail) \ argument
93 TT_GRIPE(("%s",msg)); \
96 TT_BLATHER(("%s",msg)); \
101 #define tt_want_msg(b, msg) \ argument
102 tt_want_(b, msg, );
105 #define tt_assert_msg(b, msg) \ argument
106 tt_want_(b, msg, TT_EXIT_TEST_FUNCTION);