summaryrefslogtreecommitdiffstats
path: root/test/chmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/chmap.c')
-rw-r--r--test/chmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/chmap.c b/test/chmap.c
index 365c15be52..395b716b74 100644
--- a/test/chmap.c
+++ b/test/chmap.c
@@ -16,8 +16,8 @@ static void test_mp_chmap_diff(void **state) {
}
int main(void) {
- const UnitTest tests[] = {
- unit_test(test_mp_chmap_diff),
+ const struct CMUnitTest tests[] = {
+ cmocka_unit_test(test_mp_chmap_diff),
};
- return run_tests(tests);
+ return cmocka_run_group_tests(tests, NULL, NULL);
}