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_del_from-assert.c | 36 ------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 ccan/list/test/run-list_del_from-assert.c (limited to 'ccan/list/test/run-list_del_from-assert.c') diff --git a/ccan/list/test/run-list_del_from-assert.c b/ccan/list/test/run-list_del_from-assert.c deleted file mode 100644 index 9404b71..0000000 --- a/ccan/list/test/run-list_del_from-assert.c +++ /dev/null @@ -1,36 +0,0 @@ -#define CCAN_LIST_DEBUG 1 -#include -#include -#include -#include -#include -#include -#include - -int main(void) -{ - struct list_head list1, list2; - struct list_node n1, n2, n3; - pid_t child; - int status; - - plan_tests(1); - list_head_init(&list1); - list_head_init(&list2); - list_add(&list1, &n1); - list_add(&list2, &n2); - list_add_tail(&list2, &n3); - - child = fork(); - if (child) { - wait(&status); - } else { - /* This should abort. */ - list_del_from(&list1, &n3); - exit(0); - } - - ok1(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT); - list_del_from(&list2, &n3); - return exit_status(); -} -- cgit v1.2.3