Home
last modified time | relevance | path

Searched refs:stderr_contents (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/kyua/drivers/
H A Dreport_junit.cpp191 std::string stderr_contents; in got_result() local
200 stderr_contents += ("Expected failure result details\n" in got_result()
213 stderr_contents += ("Skipped result details\n" in got_result()
234 stderr_contents += junit_metadata(test_case.get_metadata()); in got_result()
236 stderr_contents += junit_timing(iter.start_time(), iter.end_time()); in got_result()
238 stderr_contents += junit_stderr_header; in got_result()
239 const std::string real_stderr_contents = iter.stderr_contents(); in got_result()
241 stderr_contents += "<EMPTY>\n"; in got_result()
243 stderr_contents += real_stderr_contents; in got_result()
246 _output << "<system-err>" << text::escape_xml(stderr_contents) in got_result()
/freebsd/contrib/kyua/store/
H A Dschema_inttest.cpp167 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
177 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
187 ATF_REQUIRE_EQ("Test stderr", iter.stderr_contents()); in check_action_2()
197 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
207 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
287 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
297 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
307 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
378 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_4()
388 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_4()
[all …]
H A Dread_transaction.hpp91 std::string stderr_contents(void) const;
H A Dread_transaction_test.cpp238 ATF_REQUIRE(iter.stderr_contents().empty()); in ATF_TEST_CASE_BODY()
246 ATF_REQUIRE_EQ("stderr of prog2\n", iter.stderr_contents()); in ATF_TEST_CASE_BODY()
H A Dread_transaction.cpp432 store::results_iterator::stderr_contents(void) const in stderr_contents() function in store::results_iterator
/freebsd/contrib/kyua/engine/
H A Datf.cpp131 const std::string stderr_contents = utils::read_file(stderr_path); in parse_list() local
132 if (!stderr_contents.empty()) in parse_list()
133 LW("Test case list wrote to stderr: " + stderr_contents); in parse_list()
159 if (!stderr_contents.empty()) in parse_list()
/freebsd/contrib/kyua/cli/
H A Dcmd_report.cpp222 const std::string stderr_contents = result_iter.stderr_contents(); in print_test_case_and_result() local
223 if (!stderr_contents.empty()) { in print_test_case_and_result()
226 << stderr_contents; in print_test_case_and_result()
H A Dcmd_report_html.cpp372 const std::string stderr_text = iter.stderr_contents(); in got_result()