]> git.llucax.com Git - software/dgc/cdgc.git/commitdiff
opts: Fix parsing a single boolean option without args
authorLeandro Lucarella <llucax@gmail.com>
Wed, 28 Jul 2010 20:39:30 +0000 (17:39 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Wed, 28 Jul 2010 20:39:30 +0000 (17:39 -0300)
rt/gc/cdgc/opts.d

index 31114f3088dc9fe9a1d45f291fb6fdc8e635adc2..f6012b3c047e7195411490fb17d5fc2059d4e156 100644 (file)
@@ -90,7 +90,9 @@ void process_option(char* opt_name, char* opt_value)
 package void parse(char* opts_string)
 {
     char[MAX_OPT_LEN] opt_name;
+    opt_name[0] = '\0';
     char[MAX_OPT_LEN] opt_value;
+    opt_value[0] = '\0';
     char* curr = opt_name.ptr;
     size_t i = 0;
     if (opts_string is null)
@@ -140,26 +142,33 @@ unittest
         assert (sentinel == false);
         assert (mem_stomp == false);
     }
-    parse("mem_stomp=1:verbose=2");
+    parse("mem_stomp");
     with (options) {
-        assert (verbose == 2);
+        assert (verbose == 0);
         assert (log_file[0] == '\0');
         assert (sentinel == false);
         assert (mem_stomp == true);
     }
-    parse("log_file=12345 67890:verbose=1:sentinel=4:mem_stomp=0");
+    parse("mem_stomp=0:verbose=2");
+    with (options) {
+        assert (verbose == 2);
+        assert (log_file[0] == '\0');
+        assert (sentinel == false);
+        assert (mem_stomp == false);
+    }
+    parse("log_file=12345 67890:verbose=1:sentinel=4:mem_stomp=1");
     with (options) {
         assert (verbose == 1);
         assert (cstring.strcmp(log_file.ptr, "12345 67890".ptr) == 0);
         assert (sentinel == true);
-        assert (mem_stomp == false);
+        assert (mem_stomp == true);
     }
     parse(null);
     with (options) {
         assert (verbose == 1);
         assert (cstring.strcmp(log_file.ptr, "12345 67890".ptr) == 0);
         assert (sentinel == true);
-        assert (mem_stomp == false);
+        assert (mem_stomp == true);
     }
 }