Searched defs:ident (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dtp.c54 find_tc(const atf_tp_t *tp, const char *ident) argument
63 if (strcmp(atf_tc_get_ident(tc2), ident) == 0) {
H A Dtc.c549 atf_tc_init(atf_tc_t *tc, const char *ident, atf_tc_head_t head, argument
561 tc->pimpl->m_ident = ident;
574 err = atf_tc_set_md_var(tc, "ident", ident);
588 if (strcmp(atf_tc_get_md_var(tc, "ident"), ident) != 0) {
589 report_fatal_error("Test case head modified the read-only 'ident' "
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest_program_test.cpp122 got_tc(const std::string& ident, argument
125 std::string call = "got_tc(" + ident + ", {";
163 "ident: test_case_1\n"
165 "ident: test_case_2\n"
167 "ident: test_case_3\n"
171 "got_tc(test_case_1, {ident=test_case_1})",
172 "got_tc(test_case_2, {ident=test_case_2})",
173 "got_tc(test_case_3, {ident=test_case_3})",
191 "ident: test_case_1\n"
195 "ident
[all...]
H A Dtest-program.cpp106 void got_tc(const std::string& ident, const atf::tests::vars_map& props) argument
108 if (m_tcs.find(ident) != m_tcs.end())
109 throw(std::runtime_error("Duplicate test case " + ident +
111 m_tcs[ident] = props;
113 if (m_tcs[ident].find("has.cleanup") == m_tcs[ident].end())
114 m_tcs[ident].insert(std::make_pair("has.cleanup", "false"));
116 if (m_tcs[ident].find("timeout") == m_tcs[ident].end())
117 m_tcs[ident]
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dtests.cpp91 detail::atf_tp_writer::start_tc(const std::string& ident) argument
95 m_os << "ident: " << ident << "\n"; local
110 PRE(name != "ident");
137 tc_impl(const std::string& ident, const bool has_cleanup) : argument
138 m_ident(ident),
177 impl::tc::tc(const std::string& ident, const bool has_cleanup) : argument
178 pimpl(new tc_impl(ident, has_cleanup))
571 return tc->get_md_var("ident") == m_ident;
586 impl::vars_map::const_iterator iter2 = vars.find("ident");
[all...]

Completed in 24 milliseconds