blob: eb99632945358ebab5e42ff98ba18b29c73079f6 [file] [log] [blame]
Norman James6a58a272015-10-07 14:34:16 -05001#include <ccan/check_type/check_type.h>
2#include <ccan/tap/tap.h>
3
4int main(int argc, char *argv[])
5{
6 int x = 0, y = 0;
7
8 plan_tests(9);
9
10 ok1(check_type(argc, int) == 0);
11 ok1(check_type(&argc, int *) == 0);
12 ok1(check_types_match(argc, argc) == 0);
13 ok1(check_types_match(argc, x) == 0);
14 ok1(check_types_match(&argc, &x) == 0);
15
16 ok1(check_type(x++, int) == 0);
17 ok(x == 0, "check_type does not evaluate expression");
18 ok1(check_types_match(x++, y++) == 0);
19 ok(x == 0 && y == 0, "check_types_match does not evaluate expressions");
20
21 return exit_status();
22}