X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=check_type%2Ftest%2Frun.c;fp=check_type%2Ftest%2Frun.c;h=0000000000000000000000000000000000000000;hp=f4b33c1616a1b5bc38fc66fee496b374831186fe;hb=650c775ff00cccd03fc84e7789a03c51d9839004;hpb=c8acddea39d222312102952e91c32cfe4dd2cea0 diff --git a/check_type/test/run.c b/check_type/test/run.c deleted file mode 100644 index f4b33c16..00000000 --- a/check_type/test/run.c +++ /dev/null @@ -1,22 +0,0 @@ -#include "check_type/check_type.h" -#include "tap/tap.h" - -int main(int argc, char *argv[]) -{ - int x = 0, y = 0; - - plan_tests(9); - - ok1(check_type(argc, int) == 0); - ok1(check_type(&argc, int *) == 0); - ok1(check_types_match(argc, argc) == 0); - ok1(check_types_match(argc, x) == 0); - ok1(check_types_match(&argc, &x) == 0); - - ok1(check_type(x++, int) == 0); - ok(x == 0, "check_type does not evaluate expression"); - ok1(check_types_match(x++, y++) == 0); - ok(x == 0 && y == 0, "check_types_match does not evaluate expressions"); - - return exit_status(); -}