test-runner: Properly clean up allocated test suites

This commit is contained in:
Martin Willi 2015-04-08 10:20:23 +02:00 committed by Tobias Brunner
parent 432a846e66
commit b18fbde41e

View File

@ -50,6 +50,7 @@ static void destroy_case(test_case_t *tcase)
{
array_destroy(tcase->functions);
array_destroy(tcase->fixtures);
free(tcase);
}
/**