summaryrefslogtreecommitdiffstats
path: root/contrib/ccan/compiler/test/run-is_compile_constant.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ccan/compiler/test/run-is_compile_constant.c')
-rw-r--r--contrib/ccan/compiler/test/run-is_compile_constant.c15
1 files changed, 0 insertions, 15 deletions
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 <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();
-}