From: Michael Tremer Date: Mon, 22 Mar 2021 14:42:57 +0000 (+0000) Subject: tests: Drop activate test X-Git-Tag: 0.9.28~1285^2~489 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cee9464e67c4a910a388eb1bec3ade441ce5c70;p=pakfire.git tests: Drop activate test These functions have been removed Signed-off-by: Michael Tremer --- diff --git a/tests/libpakfire/main.c b/tests/libpakfire/main.c index ce508982c..ccb1fbdb8 100644 --- a/tests/libpakfire/main.c +++ b/tests/libpakfire/main.c @@ -35,20 +35,9 @@ static int test_path(const struct test* t) { return EXIT_SUCCESS; } -static int test_activate(const struct test* t) { - int r = pakfire_activate(t->pakfire); - ASSERT(r == 0); - - r = pakfire_deactivate(t->pakfire); - ASSERT(r == 0); - - return 0; -} - int main(int argc, char** argv) { testsuite_add_test(test_init); testsuite_add_test(test_path); - testsuite_add_test(test_activate); return testsuite_run(); }