summaryrefslogtreecommitdiff
path: root/ccan/list/test/run-list_prev-list_next.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/list/test/run-list_prev-list_next.c
parentbd8c223756d2f912526ecef53bae0cc8e0c63442 (diff)
remove ccan for now
Diffstat (limited to 'ccan/list/test/run-list_prev-list_next.c')
-rw-r--r--ccan/list/test/run-list_prev-list_next.c65
1 files changed, 0 insertions, 65 deletions
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 <ccan/list/list.h>
-#include <ccan/tap/tap.h>
-#include <ccan/list/list.c>
-#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();
-}