From 6a36527ec6863a6fe0f4019691fe70d3e78774a5 Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:23:29 -0500 Subject: opkg: adding repository check function git-svn-id: http://opkg.googlecode.com/svn/trunk@136 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'tests') diff --git a/tests/libopkg_test.c b/tests/libopkg_test.c index bf2cff9..bee3968 100644 --- a/tests/libopkg_test.c +++ b/tests/libopkg_test.c @@ -148,6 +148,7 @@ main (int argc, char **argv) "\tlist all - List all available packages\n" "\tlist installed - List all the installed packages\n" "\tremove [package] - Remove the specified package\n" + "\trping - Reposiroties ping, check the accessibility of repositories\n" "\ttest - Run test script\n" , basename (argv[0])); exit (0); @@ -229,9 +230,17 @@ main (int argc, char **argv) break; case 'r': - err = opkg_remove_package (opkg, argv[2], progress_callback, "Removing..."); - printf ("\nopkg_remove_package returned %d (%s)\n", err, errors[err]); - break; + if (argv[1][1] == 'e') + { + err = opkg_remove_package (opkg, argv[2], progress_callback, "Removing..."); + printf ("\nopkg_remove_package returned %d (%s)\n", err, errors[err]); + break; + }else if (argv[1][1] == 'p') + { + err = opkg_repository_accessibility_check(opkg); + printf("\nopkg_repository_accessibility_check returned (%d)\n", err); + break; + } default: printf ("Unknown command \"%s\"\n", argv[1]); -- cgit v0.9.1