Searched refs:exp_errno (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c/
H A Dmacros.h180 #define ATF_CHECK_ERRNO(exp_errno, bool_expr) \
181 atf_tc_check_errno(__FILE__, __LINE__, exp_errno, #bool_expr, bool_expr)
183 #define ATF_REQUIRE_ERRNO(exp_errno, bool_expr) \
184 atf_tc_require_errno(__FILE__, __LINE__, exp_errno, #bool_expr, bool_expr)
H A Dtc.c392 const int exp_errno, const char *expr_str,
399 if (exp_errno != actual_errno) {
403 "in %s", exp_errno, actual_errno, expr_str);
884 const int exp_errno, const char *expr_str,
887 errno_test(ctx, file, line, exp_errno, expr_str, expr_result, fail_check);
892 const int exp_errno, const char *expr_str,
895 errno_test(ctx, file, line, exp_errno, expr_str, expr_result,
1123 atf_tc_check_errno(const char *file, const size_t line, const int exp_errno, argument
1128 _atf_tc_check_errno(&Current, file, line, exp_errno, expr_str,
1133 atf_tc_require_errno(const char *file, const size_t line, const int exp_errno, argument
391 errno_test(struct context *ctx, const char *file, const size_t line, const int exp_errno, const char *expr_str, const bool expr_result, void (*fail_func)(struct context *, atf_dynstr_t *)) argument
883 _atf_tc_check_errno(struct context *ctx, const char *file, const size_t line, const int exp_errno, const char *expr_str, const bool expr_result) argument
891 _atf_tc_require_errno(struct context *ctx, const char *file, const size_t line, const int exp_errno, const char *expr_str, const bool expr_result) argument
[all...]
H A Dmacros_test.c144 #define H_CHECK_ERRNO(id, exp_errno, bool_expr) \
145 H_DEF(check_errno_ ## id, ATF_CHECK_ERRNO(exp_errno, bool_expr))
183 #define H_REQUIRE_ERRNO(id, exp_errno, bool_expr) \
184 H_DEF(require_errno_ ## id, ATF_REQUIRE_ERRNO(exp_errno, bool_expr))
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/
H A Dmacros.hpp165 #define ATF_CHECK_ERRNO(exp_errno, bool_expr) \
166 atf::tests::tc::check_errno(__FILE__, __LINE__, exp_errno, #bool_expr, \
169 #define ATF_REQUIRE_ERRNO(exp_errno, bool_expr) \
170 atf::tests::tc::require_errno(__FILE__, __LINE__, exp_errno, #bool_expr, \
H A Dtests.cpp337 impl::tc::check_errno(const char* file, const int line, const int exp_errno, argument
340 atf_tc_check_errno(file, line, exp_errno, expr_str, result);
344 impl::tc::require_errno(const char* file, const int line, const int exp_errno, argument
347 atf_tc_require_errno(file, line, exp_errno, expr_str, result);

Completed in 79 milliseconds