Lines Matching refs:result
69 #define TC_END(result, fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__) argument
72 #define TC_END_RESULT(result) \ argument
75 TC_END(result, "%s - %s.\n", \
76 result == TC_PASS ? PASS : FAIL, __func__); \
79 #define TC_END_REPORT(result) \ argument
82 TC_END(result, \
84 result == TC_PASS ? "SUCCESSFUL" : "FAILED"); \
111 unsigned int result = TC_PASS; in check_result() local
116 result = TC_FAIL; in check_result()
119 result = TC_FAIL; in check_result()
122 return result; in check_result()