Searched defs:getopt (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c/
H A Dtp_test.c33 ATF_TC(getopt); variable
34 ATF_TC_HEAD(getopt, tc)
36 atf_tc_set_md_var(tc, "descr", "Checks if getopt(3) global state is "
38 "getopt(3) again");
40 ATF_TC_BODY(getopt, tc)
56 * same driver to start, we can test getopt(3) right here without doing
59 while ((ch = getopt(argc, argv, ":Z")) != -1) {
74 "after the call to getopt(3)");
85 ATF_TP_ADD_TC(tp, getopt);
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dapplication_test.cpp54 // same driver to start, we can test getopt(3) right here without doing
57 while ((ch = ::getopt(argc, argv, ":Z")) != -1) {
78 ATF_TEST_CASE_WITHOUT_HEAD(getopt); variable
79 ATF_TEST_CASE_BODY(getopt)
89 ATF_ADD_TEST_CASE(tcs, getopt);
/bind-9.11.3/unit/atf-src/tools/
H A Dapplication_test.cpp58 // same driver to start, we can test getopt(3) right here without doing
61 while ((ch = ::getopt(argc, argv, ":Z")) != -1) {
82 ATF_TEST_CASE_WITHOUT_HEAD(getopt); variable
83 ATF_TEST_CASE_BODY(getopt)
93 ATF_ADD_TEST_CASE(tcs, getopt);
/bind-9.11.3/contrib/queryperf/utils/
H A Dgen-data-queryperf.py13 import getopt namespace
64 optlist, args = getopt.getopt(sys.argv[1:], "hp:f:n:t:m:",
83 getopt.error("Unknown option " + option)
84 except getopt.error as reason:

Completed in 12 milliseconds