Lines Matching refs:regexp
184 #define ATF_REQUIRE_MATCH(regexp, string) \
185 ATF_REQUIRE_MSG(atf_utils_grep_string("%s", string, regexp), \
186 "'%s' not matched in '%s'", regexp, string);
188 #define ATF_CHECK_MATCH(regexp, string) \
189 ATF_CHECK_MSG(atf_utils_grep_string("%s", string, regexp), \
190 "'%s' not matched in '%s'", regexp, string);
192 #define ATF_REQUIRE_MATCH_MSG(regexp, string, fmt, ...) \
193 ATF_REQUIRE_MSG(atf_utils_grep_string("%s", string, regexp), \
194 "'%s' not matched in '%s': " fmt, regexp, string, \
197 #define ATF_CHECK_MATCH_MSG(regexp, string, fmt, ...) \
198 ATF_CHECK_MSG(atf_utils_grep_string("%s", string, regexp), \
199 "'%s' not matched in '%s': " fmt, regexp, string, \