test: add boolean argument to arg-test
authorJani Nikula <jani@nikula.org>
Sun, 1 Oct 2017 20:53:12 +0000 (23:53 +0300)
committerDavid Bremner <david@tethera.net>
Thu, 5 Oct 2017 01:00:54 +0000 (22:00 -0300)
Surprisingly it's not there.

test/T410-argument-parsing.sh
test/arg-test.c

index fad134e305c59592b2d6d12dfbb7afa12c9f7266..4505c58301ead7531822d1d796174a98c699547a 100755 (executable)
@@ -3,8 +3,9 @@ test_description="argument parsing"
 . ./test-lib.sh || exit 1
 
 test_begin_subtest "sanity check"
-$TEST_DIRECTORY/arg-test  pos1  --keyword=one --string=foo pos2 --int=7 --flag=one --flag=three > OUTPUT
+$TEST_DIRECTORY/arg-test  pos1  --keyword=one --boolean --string=foo pos2 --int=7 --flag=one --flag=three > OUTPUT
 cat <<EOF > EXPECTED
+boolean 1
 keyword 1
 flags 5
 int 7
index 10dc06834513eb879c92248025b557e4f2a4b3ac..9d13618bd17c004e8dfbc822b08a5ef587a0d56d 100644 (file)
@@ -12,8 +12,10 @@ int main(int argc, char **argv){
     const char *pos_arg1=NULL;
     const char *pos_arg2=NULL;
     const char *string_val=NULL;
+    notmuch_bool_t bool_val = FALSE;
 
     notmuch_opt_desc_t options[] = {
+       { .opt_bool = &bool_val, .name = "boolean" },
        { .opt_keyword = &kw_val, .name = "keyword", .keywords =
          (notmuch_keyword_t []){ { "one", 1 },
                                  { "two", 2 },
@@ -35,6 +37,9 @@ int main(int argc, char **argv){
     if (opt_index < 0)
        return 1;
 
+    if (bool_val)
+       printf("boolean %d\n", bool_val);
+
     if (kw_val)
        printf("keyword %d\n", kw_val);