]> git.ozlabs.org Git - ccan/commitdiff
Merge branch 'rfc822'
authorRusty Russell <rusty@rustcorp.com.au>
Thu, 3 Jan 2013 01:06:59 +0000 (11:36 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 3 Jan 2013 01:06:59 +0000 (11:36 +1030)
24 files changed:
ccan/tal/_info
ccan/tal/benchmark/Makefile
ccan/tal/benchmark/samba-allocs.c
ccan/tal/benchmark/speed.c
ccan/tal/tal.c
ccan/tal/tal.h
ccan/tal/test/run-allocfail.c
ccan/tal/test/run-array.c
ccan/tal/test/run-count.c
ccan/tal/test/run-destructor.c
ccan/tal/test/run-expand.c
ccan/tal/test/run-free.c
ccan/tal/test/run-groups-grow.c
ccan/tal/test/run-iter.c
ccan/tal/test/run-named-debug.c
ccan/tal/test/run-named-nolabels.c
ccan/tal/test/run-named.c
ccan/tal/test/run-notifier.c
ccan/tal/test/run-overflow.c
ccan/tal/test/run-steal.c
ccan/tal/test/run-take.c
ccan/tal/test/run-test-backend.c
ccan/tal/test/run.c
tools/configurator/configurator.c

index 853c69851ad5b9d7af8cdf3fd91d77304fc40248..0d75f56e0ed6a7f975d39640402672a6868c69b9 100644 (file)
@@ -94,6 +94,7 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/alignof\n");
                printf("ccan/compiler\n");
                printf("ccan/likely\n");
                printf("ccan/list\n");
index aafe6c7b47d708ad95d0b0006c76a5732009993f..f1e8502b3f3b968d96bad88f7388698e4da930ef 100644 (file)
@@ -6,11 +6,13 @@ LDLIBS=-lrt
 
 all: speed samba-allocs
 
-speed: speed.o tal.o talloc.o time.o list.o take.o
+speed: speed.o tal.o talloc.o time.o list.o take.o str.o
 samba-allocs: samba-allocs.o tal.o talloc.o time.o list.o take.o
 
 tal.o: ../tal.c
        $(CC) $(CFLAGS) -c -o $@ $<
+str.o: ../str/str.c
+       $(CC) $(CFLAGS) -c -o $@ $<
 talloc.o: ../../talloc/talloc.c
        $(CC) $(CFLAGS) -c -o $@ $<
 time.o: ../../time/time.c
index 074276d8cdcbe5368fc564b4276811d07135bb1c..e25c7e9b69163996c96ad22081307ad24b729355 100644 (file)
@@ -141,8 +141,14 @@ static int unused_talloc_destructor(void *p)
 static void do_tallocs(struct node *node)
 {
        unsigned int i;
-
-       node->n = talloc_size(node->parent ? node->parent->n : NULL, node->len);
+       static int count;
+
+       if (count++ % 16 == 0)
+               node->n = talloc_array(node->parent ? node->parent->n : NULL,
+                                      char, node->len);
+       else
+               node->n = talloc_size(node->parent ? node->parent->n : NULL,
+                                     node->len);
        if (node->destructor)
                talloc_set_destructor(node->n, unused_talloc_destructor);
        if (node->name)
@@ -169,9 +175,18 @@ static void unused_tal_destructor(void *p)
 static void do_tals(struct node *node)
 {
        unsigned int i;
+       static int count;
+
+       /* Tal pays a penalty for arrays, but we can't tell which is an array
+        * and which isn't.  Grepping samba source gives 1221 talloc_array of
+        * 33137 talloc occurrences, so conservatively assume 1 in 16 */
+       if (count++ % 16 == 0)
+               node->n = tal_arr(node->parent ? node->parent->n : NULL,
+                                 char, node->len);
+       else
+               node->n = tal_alloc_(node->parent ? node->parent->n : NULL,
+                                    node->len, false, TAL_LABEL(type, ""));
 
-       node->n = tal_arr(node->parent ? node->parent->n : NULL,
-                         char, node->len);
        if (node->destructor)
                tal_add_destructor(node->n, unused_tal_destructor);
        if (node->name)
@@ -340,7 +355,6 @@ after_talloc:
        printf("Tal time:                %lluns\n", time_to_nsec(alloc_time));
        printf("Tal_free time:           %lluns\n", time_to_nsec(free_time));
 
-after_tal:
        free_time.tv_sec = free_time.tv_nsec = 0;
        for (i = 0; i < LOOPS; i++) {
                do_tals(root);
@@ -351,6 +365,7 @@ after_tal:
        }
        free_time = time_divide(free_time, i);
        printf("Single tal_free time:    %lluns\n", time_to_nsec(free_time));
+after_tal:
 
        return 0;
 }
index 0b4815fed4b82598fca562072f6df14a9c338f4e..0b5b246f2dc3b1ffac261b61bf1990b3a2474703 100644 (file)
@@ -24,6 +24,7 @@
 */
 #include <ccan/talloc/talloc.h>
 #include <ccan/tal/tal.h>
+#include <ccan/tal/str/str.h>
 #include <ccan/time/time.h>
 #include <ccan/err/err.h>
 #include <string.h>
index 5c0aec07990dcbafc44b5e7bf075ac8c68ba5641..1934a01318a3f09060614e144d189fff8467469b 100644 (file)
@@ -3,6 +3,7 @@
 #include <ccan/compiler/compiler.h>
 #include <ccan/list/list.h>
 #include <ccan/take/take.h>
+#include <ccan/alignof/alignof.h>
 #include <assert.h>
 #include <stdio.h>
 #include <stddef.h>
@@ -75,7 +76,6 @@ static void *(*allocfn)(size_t size) = malloc;
 static void *(*resizefn)(void *, size_t size) = realloc;
 static void (*freefn)(void *) = free;
 static void (*errorfn)(const char *msg) = (void *)abort;
-static bool initialized = false;
 /* Count on non-destrutor notifiers; often stays zero. */
 static size_t notifiers = 0;
 
@@ -100,23 +100,19 @@ static struct children *ignore_destroying_bit(struct children *parent_child)
 }
 
 /* This means valgrind can see leaks. */
-static void tal_cleanup(void)
+void tal_cleanup(void)
 {
        struct tal_hdr *i;
 
-       while ((i = list_top(&null_parent.c.children, struct tal_hdr, list)))
+       while ((i = list_top(&null_parent.c.children, struct tal_hdr, list))) {
                list_del(&i->list);
+               memset(i, 0, sizeof(*i));
+       }
 
        /* Cleanup any taken pointers. */
        take_cleanup();
 }
 
-/* For allocation failures inside ccan/take */
-static void take_alloc_failed(const void *p)
-{
-       tal_free(p);
-}
-
 /* We carefully start all real properties with a zero byte. */
 static bool is_literal(const struct prop_hdr *prop)
 {
@@ -326,18 +322,6 @@ static struct name *add_name_property(struct tal_hdr *t, const char *name)
        return prop;
 }
 
-static struct length *add_length_property(struct tal_hdr *t, size_t count)
-{
-       struct length *prop;
-
-       prop = allocate(sizeof(*prop));
-       if (prop) {
-               init_property(&prop->hdr, t, LENGTH);
-               prop->count = count;
-       }
-       return prop;
-}
-
 static struct children *add_child_property(struct tal_hdr *parent,
                                           struct tal_hdr *child)
 {
@@ -355,11 +339,6 @@ static bool add_child(struct tal_hdr *parent, struct tal_hdr *child)
        struct children *children = find_property(parent, CHILDREN);
 
         if (!children) {
-               if (unlikely(!initialized)) {
-                       atexit(tal_cleanup);
-                       take_allocfail(take_alloc_failed);
-                       initialized = true;
-               }
                children = add_child_property(parent, child);
                if (!children)
                        return false;
@@ -397,7 +376,9 @@ static void del_tree(struct tal_hdr *t, const tal_t *orig)
         /* Finally free our properties. */
         for (p = t->prop; p && !is_literal(p); p = next) {
                 next = p->next;
-               freefn(p);
+               /* LENGTH is appended, so don't free separately! */
+               if (p->type != LENGTH)
+                       freefn(p);
         }
         freefn(t);
 }
@@ -424,14 +405,16 @@ void *tal_alloc_(const tal_t *ctx, size_t size, bool clear, const char *label)
 
 static bool adjust_size(size_t *size, size_t count)
 {
+       const size_t extra = sizeof(struct tal_hdr) + sizeof(struct length)*2;
+
        /* Multiplication wrap */
         if (count && unlikely(*size * count / *size != count))
                goto overflow;
 
         *size *= count;
 
-        /* Make sure we don't wrap adding header. */
-        if (*size + sizeof(struct tal_hdr) < sizeof(struct tal_hdr))
+        /* Make sure we don't wrap adding header/tailer. */
+        if (*size + extra < extra)
                goto overflow;
        return true;
 overflow:
@@ -439,6 +422,17 @@ overflow:
        return false;
 }
 
+static size_t extra_for_length(size_t size)
+{
+       size_t extra;
+       const size_t align = ALIGNOF(struct length);
+
+       /* Round up size, and add tailer. */
+       extra = ((size + align-1) & ~(align-1)) - size;
+       extra += sizeof(struct length);
+       return extra;
+}
+
 void *tal_alloc_arr_(const tal_t *ctx, size_t size, size_t count, bool clear,
                     bool add_count, const char *label)
 {
@@ -447,10 +441,18 @@ void *tal_alloc_arr_(const tal_t *ctx, size_t size, size_t count, bool clear,
        if (!adjust_size(&size, count))
                return NULL;
 
+       if (add_count)
+               size += extra_for_length(size);
+
        ret = tal_alloc_(ctx, size, clear, label);
-       if (likely(ret) && add_count) {
-               if (unlikely(!add_length_property(to_tal_hdr(ret), count)))
-                       ret = tal_free(ret);
+       if (unlikely(!ret))
+               return ret;
+
+       if (add_count) {
+               struct length *lprop;
+               lprop = (struct length *)((char *)ret + size) - 1;
+               init_property(&lprop->hdr, to_tal_hdr(ret), LENGTH);
+               lprop->count = count;
        }
        return ret;
 }
@@ -672,26 +674,49 @@ bool tal_resize_(tal_t **ctxp, size_t size, size_t count)
 {
         struct tal_hdr *old_t, *t;
         struct children *child;
-       struct length *len;
+       struct prop_hdr **lenp;
+       struct length len;
+       size_t extra = 0;
 
         old_t = debug_tal(to_tal_hdr(*ctxp));
 
        if (!adjust_size(&size, count))
                return false;
 
-        t = resizefn(old_t, size + sizeof(struct tal_hdr));
+       lenp = find_property_ptr(old_t, LENGTH);
+       if (lenp) {
+               /* Copy here, in case we're shrinking! */
+               len = *(struct length *)*lenp;
+               extra = extra_for_length(size);
+       }
+
+        t = resizefn(old_t, sizeof(struct tal_hdr) + size + extra);
        if (!t) {
                call_error("Reallocation failure");
                return false;
        }
 
+       /* Copy length to end. */
+       if (lenp) {
+               struct length *new_len;
+
+               new_len = (struct length *)((char *)(t + 1) + size);
+               len.count = count;
+               *new_len = len;
+
+               /* Be careful replacing next ptr; could be old hdr. */
+               if (lenp == &old_t->prop)
+                       t->prop = &new_len->hdr;
+               else
+                       *lenp = &new_len->hdr;
+       }
+
+       update_bounds(t, sizeof(struct tal_hdr) + size + extra);
+
        /* If it didn't move, we're done! */
         if (t != old_t) {
-               update_bounds(t, size + sizeof(struct tal_hdr));
-
                /* Fix up linked list pointers. */
-               if (list_entry(t->list.next, struct tal_hdr, list) != old_t)
-                       t->list.next->prev = t->list.prev->next = &t->list;
+               t->list.next->prev = t->list.prev->next = &t->list;
 
                /* Fix up child property's parent pointer. */
                child = find_property(t, CHILDREN);
@@ -703,9 +728,6 @@ bool tal_resize_(tal_t **ctxp, size_t size, size_t count)
                if (notifiers)
                        notify(t, TAL_NOTIFY_MOVE, from_tal_hdr(old_t));
        }
-       len = find_property(t, LENGTH);
-       if (len)
-               len->count = count;
        if (notifiers)
                notify(t, TAL_NOTIFY_RESIZE, (void *)size);
 
@@ -715,26 +737,26 @@ bool tal_resize_(tal_t **ctxp, size_t size, size_t count)
 bool tal_expand_(tal_t **ctxp, const void *src, size_t size, size_t count)
 {
        struct length *l;
+       size_t old_count;
        bool ret = false;
 
        l = find_property(debug_tal(to_tal_hdr(*ctxp)), LENGTH);
+       old_count = l->count;
 
        /* Check for additive overflow */
-       if (l->count + count < count) {
+       if (old_count + count < count) {
                call_error("dup size overflow");
                goto out;
        }
 
        /* Don't point src inside thing we're expanding! */
        assert(src < *ctxp
-              || (char *)src >= (char *)(*ctxp) + (size * l->count));
+              || (char *)src >= (char *)(*ctxp) + (size * old_count));
 
-       /* Note: updates l->count. */
-       if (!tal_resize_(ctxp, size, l->count + count))
+       if (!tal_resize_(ctxp, size, old_count + count))
                goto out;
 
-       memcpy((char *)*ctxp + size * (l->count - count),
-              src, count * size);
+       memcpy((char *)*ctxp + size * old_count, src, count * size);
        ret = true;
 
 out:
index 28be3f2034c133b276bc1a9e7f803df6fa033469..86b56d35a3c26280a9915216a5443ebef78626e1 100644 (file)
@@ -327,6 +327,17 @@ void tal_set_backend(void *(*alloc_fn)(size_t size),
        tal_expand_((void **)(a1p), (a2), sizeof**(a1p),        \
                    (num2) + 0*sizeof(*(a1p) == (a2)))
 
+/**
+ * tal_cleanup - remove pointers from NULL node
+ *
+ * Internally, tal keeps a list of nodes allocated from @ctx NULL; this
+ * prevents valgrind from noticing memory leaks.  This re-initializes
+ * that list to empty.
+ *
+ * It also calls take_cleanup() for you.
+ */
+void tal_cleanup(void);
+
 
 /**
  * tal_check - set the allocation or error functions to use
index a0910cac5441dcf4fa5097798610134aa34b07c5..a166be3f6520a8795ea2c7bd916f0bfdf2a9cada 100644 (file)
@@ -148,5 +148,6 @@ int main(void)
        ok1(err_count == when_to_fail - 1);
 
        tal_free(p);
+       tal_cleanup();
        return exit_status();
 }
index 6212dae52ced2163dedeece78294d1023f36f333..d3001faff84178746ff9dced2768b2f3ed296412 100644 (file)
@@ -42,5 +42,6 @@ int main(void)
        ok1(tal_first(parent) == NULL);
        tal_free(parent);
 
+       tal_cleanup();
        return exit_status();
 }
index 0b64b887c94a47ea2b099d332c313bde81e5ba0f..6a4eb4ab8ada57a9aef4d772fedf61160e6662a4 100644 (file)
@@ -2,32 +2,87 @@
 #include <ccan/tal/tal.c>
 #include <ccan/tap/tap.h>
 
+static bool move;
+#define ALIGN (sizeof(void *)*2)
+
+static void *my_alloc(size_t len)
+{
+       char *ret = malloc(len + ALIGN);
+       memcpy(ret, &len, sizeof(len));
+       return ret + ALIGN;
+}
+
+static void my_free(void *p)
+{
+       if (p)
+               free((char *)p - ALIGN);
+}
+
+static void *my_realloc(void *old, size_t new_size)
+{
+       char *ret;
+
+       /* Test what happens if we always move */
+       if (move) {
+               size_t old_size = *(size_t *)((char *)old - ALIGN);
+               ret = my_alloc(new_size);
+               memcpy(ret, old, old_size > new_size ? new_size : old_size);
+               my_free(old);
+       } else {
+               ret = realloc((char *)old - ALIGN, new_size + ALIGN);
+               memcpy(ret, &new_size, sizeof(new_size));
+               ret += ALIGN;
+       }
+       return ret;
+}
+
 int main(void)
 {
        char *p1, *p2;
+       unsigned int i;
+
+       tal_set_backend(my_alloc, my_realloc, my_free, NULL);
+
+       plan_tests(19 * 3);
+
+       for (i = 0; i < 3; i++) {
+               move = i;
+
+               p1 = tal(NULL, char);
+               ok1(p1);
+               ok1(tal_count(p1) == 0);
+
+               p2 = tal_arr(p1, char, 1);
+               ok1(p2);
+               ok1(tal_count(p2) == 1);
+               ok1(tal_resize(&p2, 2));
+               ok1(tal_count(p2) == 2);
+               ok1(tal_check(NULL, NULL));
+               tal_free(p2);
 
-       plan_tests(12);
-
-       p1 = tal(NULL, char);
-       ok1(p1);
-       ok1(tal_count(p1) == 0);
-
-       p2 = tal_arr(p1, char, 1);
-       ok1(p2);
-       ok1(tal_count(p2) == 1);
-       ok1(tal_resize(&p2, 2));
-       ok1(tal_count(p2) == 2);
-       ok1(tal_check(NULL, NULL));
-       tal_free(p2);
-
-       p2 = tal_arrz(p1, char, 7);
-       ok1(p2);
-       ok1(tal_count(p2) == 7);
-       ok1(tal_resize(&p2, 0));
-       ok1(tal_count(p2) == 0);
-       ok1(tal_check(NULL, NULL));
-       tal_free(p2);
-       tal_free(p1);
+               /* Resize twice. */
+               p2 = tal_arrz(p1, char, 7);
+               ok1(p2);
+               ok1(tal_count(p2) == 7);
+               ok1(tal_check(NULL, NULL));
+               tal_resize(&p2, 20);
+               ok1(p2);
+               ok1(tal_check(NULL, NULL));
+               ok1(tal_count(p2) == 20);
+               /* Tickles non-moving logic, as we do not update bounds. */
+               if (i == 2)
+                       move = false;
+               tal_resize(&p2, 300);
+               ok1(p2);
+               ok1(tal_check(NULL, NULL));
+               ok1(tal_count(p2) == 300);
+               ok1(tal_resize(&p2, 0));
+               ok1(tal_count(p2) == 0);
+               ok1(tal_check(NULL, NULL));
+               tal_free(p2);
+               tal_free(p1);
+       }
 
+       tal_cleanup();
        return exit_status();
 }
index 30c5136b5b4452aba1fe7f49cb5799f60cd88a80..873548889e91472013c3901b92bae8f01ae4e25c 100644 (file)
@@ -63,5 +63,6 @@ int main(void)
        tal_free(parent);
        ok1(destroy_count == 4);
 
+       tal_cleanup();
        return exit_status();
 }
index 2edb31f6951766d69893bad05983bcddae37636a..607947bea70fe477dfdae3fe9f35388a3f52045a 100644 (file)
@@ -28,5 +28,6 @@ int main(void)
 
        tal_free(a);
 
+       tal_cleanup();
        return exit_status();
 }
index 7b9a086e7c908bfe17b977d696ac0f6c85a0f7fe..29aa8c6f49dacf462300f41eda207b414c29ea95 100644 (file)
@@ -21,5 +21,6 @@ int main(void)
        tal_free(p);
        ok1(errno == EINVAL);
 
+       tal_cleanup();
        return exit_status();
 }
index e8e382db75ded48ebc5b073015db02dc47bbaaa8..ea379c0836adc152191fbc4ee63633ee85e5eff4 100644 (file)
@@ -42,5 +42,7 @@ int main(void)
 
        /* We can expect some residue from having any child, but limited! */
        ok1(num_allocated <= allocated_after_first);
+       tal_free(p);
+       tal_cleanup();
        return exit_status();
 }
index 7021be27555df5705b43a85ecf69bbb317a1ff77..561e09cc2e697af14d25b7127388e35543c75106 100644 (file)
@@ -29,5 +29,6 @@ int main(void)
                ok1(*p[i] == '1');
                tal_free(p[i]);
        }
+       tal_cleanup();
        return exit_status();
 }
index a6e51b4391167148c4cbc77c1173e28cf9eaf9db..679e6ec8df4117f3690f16db9a61a50673b6103b 100644 (file)
@@ -30,5 +30,6 @@ int main(void)
        ok1(strcmp(tal_name(p), __FILE__ ":29:int[]") == 0);
        tal_free(p);
 
+       tal_cleanup();
        return exit_status();
 }
index 512bee3f970837643291e52aeceb2a7ea0cf92f5..fc7b81f527b7d9f9e718c085ebc16bd160764fcd 100644 (file)
@@ -26,5 +26,6 @@ int main(void)
 
        tal_free(p);
 
+       tal_cleanup();
        return exit_status();
 }
index acdc4513c2e9e83e82535e06a7f03d608a6123bc..d6275ac687c3f8d111658e40fa40c27312037f57 100644 (file)
@@ -29,5 +29,6 @@ int main(void)
        ok1(strcmp(tal_name(p), "int[]") == 0);
        tal_free(p);
 
+       tal_cleanup();
        return exit_status();
 }
index f085b8255852bcf29f3ba56e0f32646853aac29a..b57c902e80ba9c3b7ec6a9ea285b4c0be0b40419 100644 (file)
@@ -126,5 +126,6 @@ int main(void)
        tal_del_notifier(new_ctx, resize_notifier);
        tal_free(new_ctx);
 
+       tal_cleanup();
        return exit_status();
 }
index c5daf97d2794b99966dd59e959cdab7d649be87f..473ba70a11b775160c88a3af8ee43291572955a9 100644 (file)
@@ -94,5 +94,6 @@ int main(void)
        ok1(error_count == 3);
        tal_free(origpi);
 
+       tal_cleanup();
        return exit_status();
 }
index 3ff7b2b0b88a25c8bb491480ec07f90bb39b9085..36251cb7b249914077663d3b42185e5e1f33fdbb 100644 (file)
@@ -36,5 +36,6 @@ int main(void)
        ok1(tal_parent(p[4]) == p[0]);
        tal_free(p[0]);
 
+       tal_cleanup();
        return exit_status();
 }
index 72d2e8e3cabd2878377a4a03fbbef960777dd2eb..94b6581749964b3331f13907d3eaaececade2754 100644 (file)
@@ -52,5 +52,6 @@ int main(void)
        ok1(tal_dup(NULL, char, take(c), 5, 5) == NULL);
        ok1(!taken_any());
 
+       tal_cleanup();
        return exit_status();
 }
index 66144cb3a7356efdf99fba0524acc2cb0d8831ab..8fdfc064abb7eca68d06a18d0f4b00f7b9927df3 100644 (file)
@@ -75,5 +75,6 @@ int main(void)
        /* Finally, free the parent. */
        tal_free(p);
 
+       tal_cleanup();
        return exit_status();
 }
index ab4341f2c93f443bfdc6b61f84ce57c4fa45be2b..984865125deca6538ea531b714a077dce3a05b87 100644 (file)
@@ -56,5 +56,6 @@ int main(void)
        }
        tal_free(parent);
 
+       tal_cleanup();
        return exit_status();
 }
index 143069074ff4c74d222c8a48df061daf9b5d0794..bbf7259e6b9306010b99113c98548621f33e2891 100644 (file)
@@ -340,7 +340,8 @@ static char *connect_args(const char *argv[], const char *extra)
        for (i = 1; argv[i]; i++) {
                strcpy(ret + len, argv[i]);
                len += strlen(argv[i]);
-               ret[len++] = ' ';
+               if (argv[i+1])
+                       ret[len++] = ' ';
        }
        strcpy(ret + len, extra);
        return ret;
@@ -506,14 +507,13 @@ int main(int argc, const char *argv[])
        if (argc == 1)
                argv = default_args;
 
-       cmd = connect_args(argv, "-o " OUTPUT_FILE " " INPUT_FILE);
+       cmd = connect_args(argv, " -o " OUTPUT_FILE " " INPUT_FILE);
        for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)
                run_test(cmd, &tests[i]);
 
        unlink(OUTPUT_FILE);
        unlink(INPUT_FILE);
 
-       cmd[strlen(cmd) - strlen(" -o " OUTPUT_FILE " " INPUT_FILE)] = '\0';
        printf("/* Generated by CCAN configurator */\n"
               "#ifndef CCAN_CONFIG_H\n"
               "#define CCAN_CONFIG_H\n");
@@ -521,7 +521,7 @@ int main(int argc, const char *argv[])
        printf("#define _GNU_SOURCE /* Always use GNU extensions. */\n");
        printf("#endif\n");
        printf("#define CCAN_COMPILER \"%s\"\n", argv[1]);
-       printf("#define CCAN_CFLAGS \"%s\"\n\n", cmd + strlen(argv[1]) + 1);
+       printf("#define CCAN_CFLAGS \"%s\"\n\n", connect_args(argv+1, ""));
        /* This one implies "#include <ccan/..." works, eg. for tdb2.h */
        printf("#define HAVE_CCAN 1\n");
        for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++)