Searched defs:ident (Results 1 - 5 of 5) sorted by relevance
/bind-9.11.3/unit/atf-src/atf-c/ |
H A D | tp.c | 50 find_tc(const atf_tp_t *tp, const char *ident) argument 59 if (strcmp(atf_tc_get_ident(tc2), ident) == 0) {
|
H A D | tc.c | 545 atf_tc_init(atf_tc_t *tc, const char *ident, atf_tc_head_t head, argument 557 tc->pimpl->m_ident = ident; 570 err = atf_tc_set_md_var(tc, "ident", ident); 584 if (strcmp(atf_tc_get_md_var(tc, "ident"), ident) != 0) { 585 report_fatal_error("Test case head modified the read-only 'ident' "
|
/bind-9.11.3/unit/atf-src/tools/ |
H A D | test_program_test.cpp | 125 got_tc(const std::string& ident, argument 128 std::string call = "got_tc(" + ident + ", {"; 166 "ident: test_case_1\n" 168 "ident: test_case_2\n" 170 "ident: test_case_3\n" 174 "got_tc(test_case_1, {ident=test_case_1})", 175 "got_tc(test_case_2, {ident=test_case_2})", 176 "got_tc(test_case_3, {ident=test_case_3})", 194 "ident: test_case_1\n" 198 "ident [all...] |
H A D | test-program.cpp | 106 void got_tc(const std::string& ident, const 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.11.3/unit/atf-src/atf-c++/ |
H A D | tests.cpp | 92 detail::atf_tp_writer::start_tc(const std::string& ident) argument 96 m_os << "ident: " << ident << "\n"; local 111 PRE(name != "ident"); 159 tc_impl(const std::string& ident, const bool has_cleanup) : argument 160 m_ident(ident), 192 impl::tc::tc(const std::string& ident, const bool has_cleanup) : argument 193 pimpl(new tc_impl(ident, has_cleanup)) 474 impl::vars_map::const_iterator iter2 = vars.find("ident"); 482 if (key != "ident") [all...] |
Completed in 1916 milliseconds