X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2Farg-test.c;h=7aff825507a53dca4f39fe4ffe99df344133fb88;hp=10dc06834513eb879c92248025b557e4f2a4b3ac;hb=6a9626a2fdddf6115bcf97982fd10053bf48e942;hpb=4a6721970a42a9f86149fb5d395d1001fed2d305 diff --git a/test/arg-test.c b/test/arg-test.c index 10dc0683..7aff8255 100644 --- a/test/arg-test.c +++ b/test/arg-test.c @@ -12,21 +12,31 @@ int main(int argc, char **argv){ const char *pos_arg1=NULL; const char *pos_arg2=NULL; const char *string_val=NULL; + bool bool_val = false; + bool fl_set = false, int_set = false, bool_set = false, + kw_set = false, string_set = false, pos1_set = false, pos2_set = false; - notmuch_opt_desc_t options[] = { - { .opt_keyword = &kw_val, .name = "keyword", .keywords = - (notmuch_keyword_t []){ { "one", 1 }, - { "two", 2 }, - { 0, 0 } } }, - { .opt_flags = &fl_val, .name = "flag", .keywords = + notmuch_opt_desc_t parent_options[] = { + { .opt_flags = &fl_val, .name = "flag", .present = &fl_set, .keywords = (notmuch_keyword_t []){ { "one", 1 << 0}, { "two", 1 << 1 }, { "three", 1 << 2 }, { 0, 0 } } }, - { .opt_int = &int_val, .name = "int" }, - { .opt_string = &string_val, .name = "string" }, - { .opt_position = &pos_arg1 }, - { .opt_position = &pos_arg2 }, + { .opt_int = &int_val, .name = "int", .present = &int_set }, + { } + }; + + notmuch_opt_desc_t options[] = { + { .opt_bool = &bool_val, .name = "boolean", .present = &bool_set }, + { .opt_keyword = &kw_val, .name = "keyword", .present = &kw_set, .keywords = + (notmuch_keyword_t []){ { "zero", 0 }, + { "one", 1 }, + { "two", 2 }, + { 0, 0 } } }, + { .opt_inherit = parent_options }, + { .opt_string = &string_val, .name = "string", .present = &string_set }, + { .opt_position = &pos_arg1, .present = &pos1_set }, + { .opt_position = &pos_arg2, .present = &pos2_set }, { } }; @@ -35,22 +45,25 @@ int main(int argc, char **argv){ if (opt_index < 0) return 1; - if (kw_val) + if (bool_set) + printf("boolean %d\n", bool_val); + + if (kw_set) printf("keyword %d\n", kw_val); - if (fl_val) + if (fl_set) printf("flags %d\n", fl_val); - if (int_val) + if (int_set) printf("int %d\n", int_val); - if (string_val) + if (string_set) printf("string %s\n", string_val); - if (pos_arg1) + if (pos1_set) printf("positional arg 1 %s\n", pos_arg1); - if (pos_arg2) + if (pos2_set) printf("positional arg 2 %s\n", pos_arg2);