interface: update to move of llvm/Support/Host.h to llvm/TargetParser/Host.h
[isl.git] / check_reparse_test_templ.c
blob0a0740ac688d79b4fdad60a01be0462ca90951fc
1 #define xCAT(A,B) A ## B
2 #define CAT(A,B) xCAT(A,B)
3 #undef TYPE
4 #define TYPE CAT(isl_,BASE)
5 #define xFN(TYPE,NAME) TYPE ## _ ## NAME
6 #define FN(TYPE,NAME) xFN(TYPE,NAME)
8 #undef TESTS
9 #define TESTS CAT(reparse_,CAT(BASE,_tests))
11 /* Test parsing of objects of type TYPE by printing
12 * the expressions and checking that parsing the output results
13 * in the same expression.
14 * Do this for a set of expressions parsed from strings.
16 static isl_stat FN(check,TESTS)(isl_ctx *ctx)
18 int i;
20 for (i = 0; i < ARRAY_SIZE(TESTS); ++i) {
21 TYPE *obj;
23 obj = FN(TYPE,read_from_str)(ctx, TESTS[i]);
24 if (FN(check_reparse,BASE)(ctx, obj) < 0)
25 return isl_stat_error;
28 return isl_stat_ok;