Lines Matching refs:reason
342 impl::tc::fail(const std::string& reason) in fail() argument
344 atf_tc_fail("%s", reason.c_str()); in fail()
348 impl::tc::fail_nonfatal(const std::string& reason) in fail_nonfatal() argument
350 atf_tc_fail_nonfatal("%s", reason.c_str()); in fail_nonfatal()
354 impl::tc::skip(const std::string& reason) in skip() argument
356 atf_tc_skip("%s", reason.c_str()); in skip()
380 impl::tc::expect_fail(const std::string& reason) in expect_fail() argument
382 atf_tc_expect_fail("%s", reason.c_str()); in expect_fail()
386 impl::tc::expect_exit(const int exitcode, const std::string& reason) in expect_exit() argument
388 atf_tc_expect_exit(exitcode, "%s", reason.c_str()); in expect_exit()
392 impl::tc::expect_signal(const int signo, const std::string& reason) in expect_signal() argument
394 atf_tc_expect_signal(signo, "%s", reason.c_str()); in expect_signal()
398 impl::tc::expect_death(const std::string& reason) in expect_death() argument
400 atf_tc_expect_death("%s", reason.c_str()); in expect_death()
404 impl::tc::expect_timeout(const std::string& reason) in expect_timeout() argument
406 atf_tc_expect_timeout("%s", reason.c_str()); in expect_timeout()