From: Michael Tremer Date: Tue, 27 Apr 2021 19:16:08 +0000 (+0000) Subject: test: Have cgroup test functions return success at the end X-Git-Tag: 0.9.28~1285^2~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4910c5220097691fb627ff9091c5442884680fcd;p=pakfire.git test: Have cgroup test functions return success at the end Signed-off-by: Michael Tremer --- diff --git a/tests/libpakfire/cgroup.c b/tests/libpakfire/cgroup.c index 95df51bbc..61502d955 100644 --- a/tests/libpakfire/cgroup.c +++ b/tests/libpakfire/cgroup.c @@ -130,6 +130,8 @@ static int test_killall(const struct test* t) { ASSERT_SUCCESS( pakfire_cgroup_destroy(t->pakfire, "pakfire/test") ); + + return EXIT_SUCCESS; } static int test_cpustat(const struct test* t) { @@ -161,6 +163,8 @@ static int test_cpustat(const struct test* t) { ASSERT_SUCCESS( pakfire_cgroup_destroy(t->pakfire, "pakfire/test") ); + + return EXIT_SUCCESS; } static int test_nice(const struct test* t) {