From 9593fc545950782ed75f12f53238b07885559b2b Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 9 Jul 2018 22:28:25 -0700 Subject: remove ccan for now --- ccan/tal/str/test/run-take.c | 48 -------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 ccan/tal/str/test/run-take.c (limited to 'ccan/tal/str/test/run-take.c') diff --git a/ccan/tal/str/test/run-take.c b/ccan/tal/str/test/run-take.c deleted file mode 100644 index edf173f..0000000 --- a/ccan/tal/str/test/run-take.c +++ /dev/null @@ -1,48 +0,0 @@ -#include -#include -#include -#include "helper.h" - -int main(void) -{ - char *parent, *c; - - plan_tests(14); - - parent = tal(NULL, char); - ok1(parent); - - c = tal_strdup(parent, "hello"); - - c = tal_strdup(parent, take(c)); - ok1(strcmp(c, "hello") == 0); - ok1(tal_parent(c) == parent); - - c = tal_strndup(parent, take(c), 5); - ok1(strcmp(c, "hello") == 0); - ok1(tal_parent(c) == parent); - - c = tal_strndup(parent, take(c), 3); - ok1(strcmp(c, "hel") == 0); - ok1(tal_parent(c) == parent); - tal_free(c); - - c = tal_strdup(parent, "hello %s"); - c = tal_fmt(parent, take(c), "there"); - ok1(strcmp(c, "hello there") == 0); - ok1(tal_parent(c) == parent); - /* No leftover allocations. */ - tal_free(c); - ok1(no_children(parent)); - - tal_free(parent); - ok1(!taken_any()); - - /* NULL pass-through. */ - c = NULL; - ok1(tal_strdup(NULL, take(c)) == NULL); - ok1(tal_strndup(NULL, take(c), 5) == NULL); - ok1(tal_fmt(NULL, take(c), 0) == NULL); - - return exit_status(); -} -- cgit v1.2.3