From: Jo-Philipp Wich Date: Wed, 15 Mar 2017 00:29:35 +0000 (+0100) Subject: libopkg_test: mark functions static, remove unused opkg_test() X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=0b60d6a88752691ff46b86ad4a1ece7de015ed6a libopkg_test: mark functions static, remove unused opkg_test() Signed-off-by: Jo-Philipp Wich --- diff --git a/tests/libopkg_test.c b/tests/libopkg_test.c index 0d6a703..16ed2cc 100644 --- a/tests/libopkg_test.c +++ b/tests/libopkg_test.c @@ -10,7 +10,7 @@ pkg_t *find_pkg = NULL; #define TEST_PACKAGE "aspell" -void progress_callback(const opkg_progress_data_t * progress, void *data) +static void progress_callback(const opkg_progress_data_t * progress, void *data) { printf("\r%s %3d%%\n", (char *)data, progress->percentage); fflush(stdout); @@ -23,13 +23,13 @@ static void list_pkg(pkg_t * pkg) free(v); } -void package_list_installed_callback(pkg_t * pkg, void *data) +static void package_list_installed_callback(pkg_t * pkg, void *data) { if (pkg->state_status == SS_INSTALLED) list_pkg(pkg); } -void package_list_callback(pkg_t * pkg, void *data) +static void package_list_callback(pkg_t * pkg, void *data) { static int install_count = 0; static int total_count = 0; @@ -49,12 +49,12 @@ void package_list_callback(pkg_t * pkg, void *data) } } -void package_list_upgradable_callback(pkg_t * pkg, void *data) +static void package_list_upgradable_callback(pkg_t * pkg, void *data) { list_pkg(pkg); } -void print_package(pkg_t * pkg) +static void print_package(pkg_t * pkg) { char *v = pkg_version_str_alloc(pkg); const char *tags = pkg_get_string(pkg, PKG_TAGS); @@ -77,53 +77,6 @@ void print_package(pkg_t * pkg) free(v); } -void opkg_test(void) -{ - int err; - pkg_t *pkg; - - err = opkg_update_package_lists(progress_callback, "Updating..."); - printf("\nopkg_update_package_lists returned %d\n", err); - - opkg_list_packages(package_list_callback, NULL); - printf("\n"); - - if (find_pkg) { - printf("Finding package \"%s\"\n", find_pkg->name); - pkg = - opkg_find_package(find_pkg->name, - pkg_get_string(find_pkg, PKG_VERSION), - pkg_get_architecture(find_pkg), - find_pkg->src->name); - if (pkg) { - print_package(pkg); - } else - printf("Package \"%s\" not found!\n", find_pkg->name); - } else - printf("No package available to test find_package.\n"); - - err = - opkg_install_package(TEST_PACKAGE, progress_callback, - "Installing..."); - printf("\nopkg_install_package returned %d\n", err); - - err = - opkg_upgrade_package(TEST_PACKAGE, progress_callback, - "Upgrading..."); - printf("\nopkg_upgrade_package returned %d\n", err); - - err = - opkg_remove_package(TEST_PACKAGE, progress_callback, "Removing..."); - printf("\nopkg_remove_package returned %d\n", err); - - printf("Listing upgradable packages...\n"); - opkg_list_upgradable_packages(package_list_upgradable_callback, NULL); - - err = opkg_upgrade_all(progress_callback, "Upgrading all..."); - printf("\nopkg_upgrade_all returned %d\n", err); - -} - int main(int argc, char **argv) { pkg_t *pkg;