summaryrefslogtreecommitdiff
path: root/ccan/tal/str/test/run-string.c
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-07-09 22:28:25 -0700
committerWilliam Casarin <jb55@jb55.com>2018-07-09 22:31:48 -0700
commit9593fc545950782ed75f12f53238b07885559b2b (patch)
tree9c7c2f7cbb427c54e9184cb61eedce737a6cbc6f /ccan/tal/str/test/run-string.c
parentbd8c223756d2f912526ecef53bae0cc8e0c63442 (diff)
remove ccan for now
Diffstat (limited to 'ccan/tal/str/test/run-string.c')
-rw-r--r--ccan/tal/str/test/run-string.c90
1 files changed, 0 insertions, 90 deletions
diff --git a/ccan/tal/str/test/run-string.c b/ccan/tal/str/test/run-string.c
deleted file mode 100644
index 533ad01..0000000
--- a/ccan/tal/str/test/run-string.c
+++ /dev/null
@@ -1,90 +0,0 @@
-#include <ccan/tal/str/str.h>
-#include <ccan/tal/str/str.c>
-#include <ccan/tap/tap.h>
-#include "helper.h"
-
-int main(void)
-{
- char *parent, *c;
-
- plan_tests(32);
-
- parent = tal(NULL, char);
- ok1(parent);
-
- c = tal_strdup(parent, "hello");
- ok1(strcmp(c, "hello") == 0);
- ok1(tal_parent(c) == parent);
- tal_free(c);
-
- c = tal_strndup(parent, "hello", 3);
- ok1(strcmp(c, "hel") == 0);
- ok1(tal_parent(c) == parent);
- tal_free(c);
-
-#ifdef TAL_USE_TALLOC
- c = tal_talloc_typechk_(parent, char *);
-#else
- c = tal_typechk_(parent, char *);
-#endif
- c = tal_dup_arr(parent, char, "hello", 6, 0);
- ok1(strcmp(c, "hello") == 0);
- ok1(strcmp(tal_name(c), "char[]") == 0);
- ok1(tal_parent(c) == parent);
- tal_free(c);
-
- /* Now with an extra byte. */
- c = tal_dup_arr(parent, char, "hello", 6, 1);
- ok1(strcmp(c, "hello") == 0);
- ok1(strcmp(tal_name(c), "char[]") == 0);
- ok1(tal_parent(c) == parent);
- strcat(c, "x");
- tal_free(c);
-
- c = tal_fmt(parent, "hello %s", "there");
- ok1(strcmp(c, "hello there") == 0);
- ok1(tal_parent(c) == parent);
- tal_free(c);
-
- c = tal_strcat(parent, "hello ", "there");
- ok1(strcmp(c, "hello there") == 0);
- ok1(tal_parent(c) == parent);
-
- /* Make sure take works correctly. */
- c = tal_strcat(parent, take(c), " again");
- ok1(strcmp(c, "hello there again") == 0);
- ok1(tal_parent(c) == parent);
- ok1(single_child(parent, c));
-
- c = tal_strcat(parent, "And ", take(c));
- ok1(strcmp(c, "And hello there again") == 0);
- ok1(tal_parent(c) == parent);
- ok1(single_child(parent, c));
-
- /* NULL pass through works... */
- c = tal_strcat(parent, take(NULL), take(c));
- ok1(!c);
- ok1(no_children(parent));
-
- c = tal_strcat(parent, take(tal_strdup(parent, "hi")),
- take(NULL));
- ok1(!c);
- ok1(no_children(parent));
-
- c = tal_strcat(parent, take(NULL), take(NULL));
- ok1(!c);
- ok1(no_children(parent));
-
- /* Appending formatted strings. */
- c = tal_strdup(parent, "hi");
- ok1(tal_append_fmt(&c, "%s %s", "there", "world"));
- ok1(strcmp(c, "hithere world") == 0);
- ok1(tal_parent(c) == parent);
-
- ok1(!tal_append_fmt(&c, take(NULL), "there", "world"));
- ok1(strcmp(c, "hithere world") == 0);
-
- tal_free(parent);
-
- return exit_status();
-}