Lines Matching defs:reason
320 impl::tc::fail(const std::string& reason)
322 atf_tc_fail("%s", reason.c_str());
326 impl::tc::fail_nonfatal(const std::string& reason)
328 atf_tc_fail_nonfatal("%s", reason.c_str());
332 impl::tc::skip(const std::string& reason)
334 atf_tc_skip("%s", reason.c_str());
358 impl::tc::expect_fail(const std::string& reason)
360 atf_tc_expect_fail("%s", reason.c_str());
364 impl::tc::expect_exit(const int exitcode, const std::string& reason)
366 atf_tc_expect_exit(exitcode, "%s", reason.c_str());
370 impl::tc::expect_signal(const int signo, const std::string& reason)
372 atf_tc_expect_signal(signo, "%s", reason.c_str());
376 impl::tc::expect_death(const std::string& reason)
378 atf_tc_expect_death("%s", reason.c_str());
382 impl::tc::expect_timeout(const std::string& reason)
384 atf_tc_expect_timeout("%s", reason.c_str());