Lines Matching refs:fmt
130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \
133 atf_tc_fail_requirement(__FILE__, __LINE__, fmt, ##__VA_ARGS__); \
136 #define ATF_CHECK_MSG(expression, fmt, ...) \
139 atf_tc_fail_check(__FILE__, __LINE__, fmt, ##__VA_ARGS__); \
162 #define ATF_REQUIRE_EQ_MSG(expected, actual, fmt, ...) \
163 ATF_REQUIRE_MSG((expected) == (actual), "%s != %s: " fmt, \
166 #define ATF_CHECK_EQ_MSG(expected, actual, fmt, ...) \
167 ATF_CHECK_MSG((expected) == (actual), "%s != %s: " fmt, \
178 #define ATF_REQUIRE_STREQ_MSG(expected, actual, fmt, ...) \
180 "%s != %s (%s != %s): " fmt, \
183 #define ATF_CHECK_STREQ_MSG(expected, actual, fmt, ...) \
185 "%s != %s (%s != %s): " fmt, \
196 #define ATF_REQUIRE_MATCH_MSG(regexp, string, fmt, ...) \
198 "'%s' not matched in '%s': " fmt, regexp, string, \
201 #define ATF_CHECK_MATCH_MSG(regexp, string, fmt, ...) \
203 "'%s' not matched in '%s': " fmt, regexp, string, \