Lines Matching refs:suite
936 CU_pSuite suite[5];
938 suite[0] = CU_add_suite("option parser", NULL, NULL);
939 if (!suite[0]) { /* signal error */
940 fprintf(stderr, "W: cannot add option parser test suite (%s)\n",
947 if (!CU_add_test(suite[0], s, t_parse_option##n)) { \
967 if ((suite[1] = CU_add_suite("option encoder", NULL, NULL))) {
969 if (!CU_add_test(suite[1], s, t_encode_option##n)) { \
985 fprintf(stderr, "W: cannot add option encoder test suite (%s)\n",
989 if ((suite[2] = CU_add_suite("option accessors", NULL, NULL))) {
991 if (!CU_add_test(suite[2], s, t_access_option##n)) { \
1005 fprintf(stderr, "W: cannot add option acessor function test suite (%s)\n",
1009 if ((suite[3] = CU_add_suite("option iterator", NULL, NULL))) {
1011 if (!CU_add_test(suite[3], s, t_iterate_option##n)) { \
1028 fprintf(stderr, "W: cannot add option iterator test suite (%s)\n",
1032 if ((suite[4] = CU_add_suite("option filter", NULL, NULL))) {
1034 if (!CU_add_test(suite[4], s, t_filter_option##n)) { \
1044 fprintf(stderr, "W: cannot add option filter test suite (%s)\n",
1048 return suite[0];