From 01bf197b2a64323371fbd3bc09dc98c5c1ed6a0f Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:20:10 -0500 Subject: opkg: add string versions of error codes to libopkg_test git-svn-id: http://opkg.googlecode.com/svn/trunk@122 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'tests') diff --git a/tests/libopkg_test.c b/tests/libopkg_test.c index cab09b4..7033ced 100644 --- a/tests/libopkg_test.c +++ b/tests/libopkg_test.c @@ -4,6 +4,17 @@ opkg_package_t *find_pkg = NULL; +char *errors[8] = { + "No Error", + "Unknown Eror", + "Download failed", + "Dependancies failed", + "Package already installed", + "Package not available", + "Package not found", + "Package not installed" +}; + void progress_callback (opkg_t *opkg, const opkg_progress_data_t *progress, void *data) { @@ -80,7 +91,7 @@ main (int argc, char **argv) opkg_re_read_config_files (opkg); err = opkg_update_package_lists (opkg, progress_callback, "Updating..."); - printf ("\nopkg_update_package_lists returned %d\n", err); + printf ("\nopkg_update_package_lists returned %d (%s)\n", err, errors[err]); opkg_list_packages (opkg, package_list_callback, NULL); printf ("\n"); @@ -102,19 +113,19 @@ main (int argc, char **argv) printf ("No package available to test find_package.\n"); err = opkg_install_package (opkg, "aspell", progress_callback, "Installing..."); - printf ("\nopkg_install_package returned %d\n", err); + printf ("\nopkg_install_package returned %d (%s)\n", err, errors[err]); err = opkg_upgrade_package (opkg, "aspell", progress_callback, "Upgrading..."); - printf ("\nopkg_upgrade_package returned %d\n", err); + printf ("\nopkg_upgrade_package returned %d (%s)\n", err, errors[err]); err = opkg_remove_package (opkg, "aspell", progress_callback, "Removing..."); - printf ("\nopkg_remove_package returned %d\n", err); + printf ("\nopkg_remove_package returned %d (%s)\n", err, errors[err]); printf ("Listing upgradable packages...\n"); opkg_list_upgradable_packages (opkg, package_list_upgradable_callback, NULL); err = opkg_upgrade_all (opkg, progress_callback, "Upgrading all..."); - printf ("\nopkg_upgrade_all returned %d\n", err); + printf ("\nopkg_upgrade_all returned %d (%s)\n", err, errors[err]); opkg_free (opkg); -- cgit v0.9.1