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/list/test/run-list_prev-list_next.c | 65 -------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 ccan/list/test/run-list_prev-list_next.c (limited to 'ccan/list/test/run-list_prev-list_next.c') diff --git a/ccan/list/test/run-list_prev-list_next.c b/ccan/list/test/run-list_prev-list_next.c deleted file mode 100644 index cc61e03..0000000 --- a/ccan/list/test/run-list_prev-list_next.c +++ /dev/null @@ -1,65 +0,0 @@ -#include -#include -#include -#include "helper.h" - -struct parent { - const char *name; - unsigned int num_children; - struct list_head children; -}; - -struct child { - const char *name; - struct list_node list; -}; - -int main(void) -{ - struct parent parent; - struct child c1, c2, c3; - const struct parent *p; - const struct child *c; - - plan_tests(20); - parent.num_children = 0; - list_head_init(&parent.children); - - c1.name = "c1"; - list_add(&parent.children, &c1.list); - - ok1(list_next(&parent.children, &c1, list) == NULL); - ok1(list_prev(&parent.children, &c1, list) == NULL); - - c2.name = "c2"; - list_add_tail(&parent.children, &c2.list); - - ok1(list_next(&parent.children, &c1, list) == &c2); - ok1(list_prev(&parent.children, &c1, list) == NULL); - ok1(list_next(&parent.children, &c2, list) == NULL); - ok1(list_prev(&parent.children, &c2, list) == &c1); - - c3.name = "c3"; - list_add_tail(&parent.children, &c3.list); - - ok1(list_next(&parent.children, &c1, list) == &c2); - ok1(list_prev(&parent.children, &c1, list) == NULL); - ok1(list_next(&parent.children, &c2, list) == &c3); - ok1(list_prev(&parent.children, &c2, list) == &c1); - ok1(list_next(&parent.children, &c3, list) == NULL); - ok1(list_prev(&parent.children, &c3, list) == &c2); - - /* Const variants */ - p = &parent; - c = &c2; - ok1(list_next(&p->children, &c1, list) == &c2); - ok1(list_prev(&p->children, &c1, list) == NULL); - ok1(list_next(&p->children, c, list) == &c3); - ok1(list_prev(&p->children, c, list) == &c1); - ok1(list_next(&parent.children, c, list) == &c3); - ok1(list_prev(&parent.children, c, list) == &c1); - ok1(list_next(&p->children, &c3, list) == NULL); - ok1(list_prev(&p->children, &c3, list) == &c2); - - return exit_status(); -} -- cgit v1.2.3