]> git.ozlabs.org Git - ccan/commitdiff
cdump: handle , at end of enums.
authorRusty Russell <rusty@rustcorp.com.au>
Tue, 11 Nov 2014 05:25:54 +0000 (15:55 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Tue, 11 Nov 2014 05:28:43 +0000 (15:58 +1030)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/cdump/cdump.c
ccan/cdump/test/run-enum-comma.c [new file with mode: 0644]

index 20cdb4eb1f6edafa613d5e7589bfb6c3a77e7e2b..2680b4d20058a14fa2cad3b8bffa35a944f952b1 100644 (file)
@@ -428,6 +428,10 @@ static bool tok_take_enum(struct parse_state *ps)
        do {
                struct cdump_enum_val *v;
 
        do {
                struct cdump_enum_val *v;
 
+               /* GCC extension: comma and end of enum */
+               if (tok_is(&ps->toks, "}"))
+                       break;
+
                tal_resize(&e->u.enum_vals, n+1);
                v = &e->u.enum_vals[n++];
 
                tal_resize(&e->u.enum_vals, n+1);
                v = &e->u.enum_vals[n++];
 
diff --git a/ccan/cdump/test/run-enum-comma.c b/ccan/cdump/test/run-enum-comma.c
new file mode 100644 (file)
index 0000000..4aaea5e
--- /dev/null
@@ -0,0 +1,34 @@
+#include <ccan/cdump/cdump.h>
+/* Include the C files directly. */
+#include <ccan/cdump/cdump.c>
+#include <ccan/tap/tap.h>
+
+int main(void)
+{
+       struct cdump_definitions *defs;
+       const struct cdump_type *t;
+       char *problems;
+
+       /* This is how many tests you plan to run */
+       plan_tests(12);
+
+       defs = cdump_extract(NULL, "enum foo { BAR, BAZ, };", &problems);
+       ok1(defs);
+       ok1(!problems);
+
+       ok1(strmap_empty(&defs->structs));
+       ok1(strmap_empty(&defs->unions));
+       t = strmap_get(&defs->enums, "foo");
+       ok1(t);
+       ok1(t->kind == CDUMP_ENUM);
+       ok1(streq(t->name, "foo"));
+       ok1(tal_count(t->u.enum_vals) == 2);
+       ok1(streq(t->u.enum_vals[0].name, "BAR"));
+       ok1(!t->u.enum_vals[0].value);
+       ok1(streq(t->u.enum_vals[1].name, "BAZ"));
+       ok1(!t->u.enum_vals[1].value);
+       tal_free(defs);
+
+       /* This exits depending on whether all tests passed */
+       return exit_status();
+}