Lines Matching refs:expression
130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \
132 if (!(expression)) \
136 #define ATF_CHECK_MSG(expression, fmt, ...) \
138 if (!(expression)) \
142 #define ATF_REQUIRE(expression) \
144 if (!(expression)) \
146 #expression " not met"); \
149 #define ATF_CHECK(expression) \
151 if (!(expression)) \
153 #expression " not met"); \