summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:11:50 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:11:50 (EST)
commit7e2978b5393e5de41aac4ba88b2061b751eab2c7 (patch)
treef02a79f057ab9d7cb182aecd693278a192af1f46 /tests
parentb9e095a94bd550cea050a3a614e3e370b8c9e466 (diff)
opkg: fix problems in opkg_install_package and implement opkg_remove_package
git-svn-id: http://opkg.googlecode.com/svn/trunk@83 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'tests')
-rw-r--r--tests/libopkg_test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/libopkg_test.c b/tests/libopkg_test.c
index 49aef22..205db5c 100644
--- a/tests/libopkg_test.c
+++ b/tests/libopkg_test.c
@@ -29,5 +29,9 @@ main (int argc, char **argv)
printf ("opkg_install_package returned %d\n", err);
+ err = opkg_remove_package (opkg, "aspell", progress_callback, "Removing...");
+
+ printf ("opkg_remove_package returned %d\n", err);
+
opkg_free (opkg);
}