diff options
author | Petr Špaček <petr.spacek@nic.cz> | 2020-02-14 09:03:28 +0100 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2020-02-25 09:26:36 +0100 |
commit | 161b4d7c7a806fe160e1a9a9b32df9e77b85d61f (patch) | |
tree | 97bba66a2fa9056a75f4d259db58e4d43db429b8 /contrib/ccan/compiler/test/compile_fail-printf.c | |
parent | contrib/compiler: machine readable license (diff) | |
download | knot-resolver-161b4d7c7a806fe160e1a9a9b32df9e77b85d61f.tar.xz knot-resolver-161b4d7c7a806fe160e1a9a9b32df9e77b85d61f.zip |
contrib/compiler: remove dead tests
Diffstat (limited to 'contrib/ccan/compiler/test/compile_fail-printf.c')
-rw-r--r-- | contrib/ccan/compiler/test/compile_fail-printf.c | 22 |
1 files changed, 0 insertions, 22 deletions
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 <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; -} |