Lines Matching refs:number_of_tests
257 int issue_num, number_of_tests; in test_file() local
266 number_of_tests = 0; in test_file()
272 tests = (struct CMUnitTest *)realloc(tests, sizeof(struct CMUnitTest) * (number_of_tests + 1)); in test_file()
273 …tests[number_of_tests] = (struct CMUnitTest)cmocka_unit_test_setup_teardown(test_issue, setup_issu… in test_file()
274 tests[number_of_tests].name = strdup(list_lines[i]); in test_file()
275 number_of_tests ++; in test_file()
279 _cmocka_run_group_tests("Testing issues", tests, number_of_tests, NULL, NULL); in test_file()
282 number_of_tests = 0; in test_file()
289 tests = (struct CMUnitTest *)realloc(tests, sizeof(struct CMUnitTest) * (number_of_tests + 1)); in test_file()
290 …tests[number_of_tests] = (struct CMUnitTest)cmocka_unit_test_setup_teardown(test_MC, setup_MC, tea… in test_file()
291 tests[number_of_tests].name = tmp; in test_file()
292 number_of_tests ++; in test_file()
296 _cmocka_run_group_tests("Testing MC", tests, number_of_tests, NULL, NULL); in test_file()