Lines Matching +defs:file +defs:tests
10 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
12 * See the COPYRIGHT file distributed with this work for additional
43 * the caller might run from another directory, but tests
94 const char *file;
98 } tests[] = {
135 for (i = 0; i < sizeof(tests) / sizeof(tests[1]); i++) {
136 result = irs_resconf_load(mctx, tests[i].file, &resconf);
137 if (result != tests[i].loadres) {
139 isc_result_totext(result), tests[i].file);
143 fail_msg("# NULL on success loading %s", tests[i].file);
146 tests[i].file);
149 if (resconf != NULL && tests[i].check != NULL) {
150 result = (tests[i].check)(resconf);
151 if (result != tests[i].checkres) {
154 tests[i].file);
167 const struct CMUnitTest tests[] = {
171 return cmocka_run_group_tests(tests, NULL, NULL);