]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
contrib/compiler: remove dead tests
authorPetr Špaček <petr.spacek@nic.cz>
Fri, 14 Feb 2020 08:03:28 +0000 (09:03 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Tue, 25 Feb 2020 08:26:36 +0000 (09:26 +0100)
contrib/ccan/compiler/test/compile_fail-printf.c [deleted file]
contrib/ccan/compiler/test/run-is_compile_constant.c [deleted file]

diff --git a/contrib/ccan/compiler/test/compile_fail-printf.c b/contrib/ccan/compiler/test/compile_fail-printf.c
deleted file mode 100644 (file)
index 8f34ae5..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <ccan/compiler/compiler.h>
-
-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 (file)
index a66f2e1..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <ccan/compiler/compiler.h>
-#include <ccan/tap/tap.h>
-
-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();
-}