diff options
| author | William Casarin <jb55@jb55.com> | 2018-07-09 22:28:25 -0700 |
|---|---|---|
| committer | William Casarin <jb55@jb55.com> | 2018-07-09 22:31:48 -0700 |
| commit | 9593fc545950782ed75f12f53238b07885559b2b (patch) | |
| tree | 9c7c2f7cbb427c54e9184cb61eedce737a6cbc6f /ccan/compiler/test | |
| parent | bd8c223756d2f912526ecef53bae0cc8e0c63442 (diff) | |
remove ccan for now
Diffstat (limited to 'ccan/compiler/test')
| -rw-r--r-- | ccan/compiler/test/compile_fail-printf.c | 24 | ||||
| -rw-r--r-- | ccan/compiler/test/run-is_compile_constant.c | 17 |
2 files changed, 0 insertions, 41 deletions
diff --git a/ccan/compiler/test/compile_fail-printf.c b/ccan/compiler/test/compile_fail-printf.c deleted file mode 100644 index 7664f65..0000000 --- a/ccan/compiler/test/compile_fail-printf.c +++ /dev/null @@ -1,24 +0,0 @@ -#include <ccan/compiler/compiler.h> - -static void PRINTF_FMT(2,3) my_printf(int x, const char *fmt, ...) -{ - (void)x; - (void)fmt; -} - -int main(void) -{ - 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/ccan/compiler/test/run-is_compile_constant.c b/ccan/compiler/test/run-is_compile_constant.c deleted file mode 100644 index c914c68..0000000 --- a/ccan/compiler/test/run-is_compile_constant.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <ccan/compiler/compiler.h> -#include <ccan/tap/tap.h> - -int main(int argc, char *argv[]) -{ - (void)argc; - (void)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(); -} |
