Lines Matching refs:reason
136 const std::string reason = rest.substr(2); in parse_with_reason() local
137 INV(!reason.empty()); in parse_with_reason()
140 return atf_result(atf_result::broken, reason); in parse_with_reason()
142 return atf_result(atf_result::expected_death, reason); in parse_with_reason()
144 return atf_result(atf_result::expected_failure, reason); in parse_with_reason()
146 return atf_result(atf_result::expected_timeout, reason); in parse_with_reason()
148 return atf_result(atf_result::failed, reason); in parse_with_reason()
150 return atf_result(atf_result::skipped, reason); in parse_with_reason()
208 const std::string reason = rest.substr(delim + 2); in parse_with_reason_and_arg() local
211 return atf_result(atf_result::expected_exit, arg, reason); in parse_with_reason_and_arg()
213 return atf_result(atf_result::expected_signal, arg, reason); in parse_with_reason_and_arg()
371 engine::atf_result::reason(void) const in reason() function in engine::atf_result
594 const optional< std::string >& reason = object.reason(); in operator <<() local
599 % (reason ? text::quote(reason.get(), '\'') : "none"); in operator <<()