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-fmt-terminate.c | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 ccan/tal/str/test/run-fmt-terminate.c (limited to 'ccan/tal/str/test/run-fmt-terminate.c') diff --git a/ccan/tal/str/test/run-fmt-terminate.c b/ccan/tal/str/test/run-fmt-terminate.c deleted file mode 100644 index 374ca03..0000000 --- a/ccan/tal/str/test/run-fmt-terminate.c +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include -#include -#include -#include -#include "helper.h" - -/* Empty format string: should still terminate! */ -int main(void) -{ - char *str; - const char *fmt = ""; - - plan_tests(1); - /* GCC complains about empty format string, complains about non-literal - * with no args... */ - str = tal_fmt(NULL, fmt, ""); - ok1(!strcmp(str, "")); - tal_free(str); - - return exit_status(); -} -- cgit v1.2.3