diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2016-03-11 21:18:42 -0900 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2016-03-11 21:18:42 -0900 |
commit | 009d6db7b01462a264a8fb15477611bc2d8674eb (patch) | |
tree | 48bc88526b34c352797711dd405616bd2ca60051 /ccan/compiler/test/run-is_compile_constant.c | |
parent | 074caf716a816d3c4c62bce28503e512d0ef4169 (diff) |
Redo lots of stuff
Diffstat (limited to 'ccan/compiler/test/run-is_compile_constant.c')
-rw-r--r-- | ccan/compiler/test/run-is_compile_constant.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ccan/compiler/test/run-is_compile_constant.c b/ccan/compiler/test/run-is_compile_constant.c new file mode 100644 index 0000000..a66f2e1 --- /dev/null +++ b/ccan/compiler/test/run-is_compile_constant.c @@ -0,0 +1,15 @@ +#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(); +} |