Searched defs:tcr (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Datf-run.cpp276 test_case_result tcr; local
279 tcr = read_test_case_result(resfile);
281 if (tcr.state() == "expected_timeout") {
282 return tcr;
292 test_case_result tcr; local
295 tcr = read_test_case_result(resfile);
302 if (tcr.state() == "expected_death") {
303 return tcr;
304 } else if (tcr.state() == "expected_exit") {
305 if (tcr
340 test_case_result tcr; local
451 impl::test_case_result tcr = get_test_case_result(s.first, local
[all...]
H A Dtest_program_test.cpp68 const impl::test_case_result& tcr)
70 ATF_REQUIRE_EQ(exp_state, tcr.state());
71 ATF_REQUIRE_EQ(exp_value, tcr.value());
72 ATF_REQUIRE_EQ(exp_reason, tcr.reason());
927 const impl::test_case_result tcr = impl::read_test_case_result( local
929 ATF_REQUIRE_EQ("failed", tcr.state());
930 ATF_REQUIRE_EQ("foo bar", tcr.reason());
936 const impl::test_case_result tcr = impl::read_test_case_result( local
938 ATF_REQUIRE_EQ("skipped", tcr.state());
939 ATF_REQUIRE_EQ("baz bar", tcr
67 check_result(const char* exp_state, const int exp_value, const char* exp_reason, const impl::test_case_result& tcr) argument
967 const impl::test_case_result tcr = impl::read_test_case_result( local
[all...]

Completed in 12 milliseconds