Lines Matching refs:reason
335 impl::tc::fail(const std::string& reason)
337 atf_tc_fail("%s", reason.c_str());
341 impl::tc::fail_nonfatal(const std::string& reason)
343 atf_tc_fail_nonfatal("%s", reason.c_str());
347 impl::tc::skip(const std::string& reason)
349 atf_tc_skip("%s", reason.c_str());
373 impl::tc::expect_fail(const std::string& reason)
375 atf_tc_expect_fail("%s", reason.c_str());
379 impl::tc::expect_exit(const int exitcode, const std::string& reason)
381 atf_tc_expect_exit(exitcode, "%s", reason.c_str());
385 impl::tc::expect_signal(const int signo, const std::string& reason)
387 atf_tc_expect_signal(signo, "%s", reason.c_str());
391 impl::tc::expect_death(const std::string& reason)
393 atf_tc_expect_death("%s", reason.c_str());
397 impl::tc::expect_timeout(const std::string& reason)
399 atf_tc_expect_timeout("%s", reason.c_str());