From 161b4d7c7a806fe160e1a9a9b32df9e77b85d61f Mon Sep 17 00:00:00 2001 From: Petr Špaček Date: Fri, 14 Feb 2020 09:03:28 +0100 Subject: contrib/compiler: remove dead tests --- contrib/ccan/compiler/test/compile_fail-printf.c | 22 ---------------------- .../ccan/compiler/test/run-is_compile_constant.c | 15 --------------- 2 files changed, 37 deletions(-) delete mode 100644 contrib/ccan/compiler/test/compile_fail-printf.c delete mode 100644 contrib/ccan/compiler/test/run-is_compile_constant.c (limited to 'contrib') diff --git a/contrib/ccan/compiler/test/compile_fail-printf.c b/contrib/ccan/compiler/test/compile_fail-printf.c deleted file mode 100644 index 8f34ae5a..00000000 --- a/contrib/ccan/compiler/test/compile_fail-printf.c +++ /dev/null @@ -1,22 +0,0 @@ -#include - -static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...) -{ -} - -int main(int argc, char *argv[]) -{ - unsigned int i = 0; - - my_printf(1, "Not a pointer " -#ifdef FAIL - "%p", -#if !HAVE_ATTRIBUTE_PRINTF -#error "Unfortunately we don't fail if !HAVE_ATTRIBUTE_PRINTF." -#endif -#else - "%i", -#endif - i); - return 0; -} diff --git a/contrib/ccan/compiler/test/run-is_compile_constant.c b/contrib/ccan/compiler/test/run-is_compile_constant.c deleted file mode 100644 index a66f2e13..00000000 --- a/contrib/ccan/compiler/test/run-is_compile_constant.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -int main(int argc, char *argv[]) -{ - plan_tests(2); - - ok1(!IS_COMPILE_CONSTANT(argc)); -#if HAVE_BUILTIN_CONSTANT_P - ok1(IS_COMPILE_CONSTANT(7)); -#else - pass("If !HAVE_BUILTIN_CONSTANT_P, IS_COMPILE_CONSTANT always false"); -#endif - return exit_status(); -} -- cgit v1.2.3