summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:20:10 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:20:10 (EST)
commit01bf197b2a64323371fbd3bc09dc98c5c1ed6a0f (patch)
tree3c203aff58547119c7358bc4ae5234efad373fc0 /tests
parenta88680662fe0a5ea96aaa64b3a41e8200ee4b15c (diff)
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
Diffstat (limited to 'tests')
-rw-r--r--tests/libopkg_test.c21
1 files changed, 16 insertions, 5 deletions
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);