| D | tinytest_macros.h | 72 #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno)) argument 78 #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno)) argument 153 #define tt_assert_op_type(a,op,b,type,fmt) \ argument 154 tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \ 157 #define tt_int_op(a,op,b) \ argument 158 tt_assert_test_type(a,b,#a" "#op" "#b,long,(val1_ op val2_), \ 162 #define tt_fd_op(a,op,b) do { \ argument 165 tt_assert_test_type(_a,_b,#a" "#op" "#b,long,(val1_ op val2_), \ 169 #define tt_uint_op(a,op,b) \ argument 170 tt_assert_test_type(a,b,#a" "#op" "#b,unsigned long, \ [all …]
|