aboutsummaryrefslogtreecommitdiffstats
path: root/tests/blogc/check_filelist_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/blogc/check_filelist_parser.c')
-rw-r--r--tests/blogc/check_filelist_parser.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/blogc/check_filelist_parser.c b/tests/blogc/check_filelist_parser.c
index 5883eb7..da1698e 100644
--- a/tests/blogc/check_filelist_parser.c
+++ b/tests/blogc/check_filelist_parser.c
@@ -122,10 +122,10 @@ test_filelist_parse_crlf(void **state)
int
main(void)
{
- const UnitTest tests[] = {
- unit_test(test_filelist_parse_empty),
- unit_test(test_filelist_parse),
- unit_test(test_filelist_parse_crlf),
+ const struct CMUnitTest tests[] = {
+ cmocka_unit_test(test_filelist_parse_empty),
+ cmocka_unit_test(test_filelist_parse),
+ cmocka_unit_test(test_filelist_parse_crlf),
};
- return run_tests(tests);
+ return cmocka_run_group_tests(tests, NULL, NULL);
}