Fixed up internal test names (copy/pasta?)

The test names output by `make check` now reflect reality.
This commit is contained in:
Patrick J Cherry
2016-10-06 13:44:20 +01:00
parent 04b6637451
commit 957707bcfc
3 changed files with 7 additions and 7 deletions

View File

@@ -141,9 +141,9 @@ START_TEST( test_fatal_doesnt_call_handler )
END_TEST
Suite* error_suite(void)
Suite* util_suite(void)
{
Suite *s = suite_create("error");
Suite *s = suite_create("util");
TCase *tc_process = tcase_create("process");
TCase *tc_handler = tcase_create("handler");
@@ -163,7 +163,7 @@ Suite* error_suite(void)
int main(void)
{
int number_failed;
Suite *s = error_suite();
Suite *s = util_suite();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
number_failed = srunner_ntests_failed(sr);