Lines Matching refs:test
5 #define for_each_test(i, test) \ argument
6 for (i = 0; i < sizeof(test) / sizeof(test[0]); i++)
13 #define DEFINE_TEST_FAIL(test) \ argument
14 const struct test_fail test[] __initconst
23 #define DEFINE_TEST_OK(type, test) \ argument
24 const type test[] __initconst
26 #define TEST_FAIL(fn, type, fmt, test) \ argument
30 for_each_test(i, test) { \
31 const struct test_fail *t = &test[i]; \
45 #define TEST_OK(fn, type, fmt, test) \ argument
49 for_each_test(i, test) { \
50 const typeof(test[0]) *t = &test[i]; \