opkg: add update packages lists call to libopkg_test
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:10:21 +0000 (05:10 +0000)
committerticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Mon, 15 Dec 2008 05:10:21 +0000 (05:10 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@76 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

tests/libopkg_test.c

index b834a7f00ea0cbcbeb2d0dc4a81e614065799bb3..9146d0c84d5090d0656a22ac6c53dd8b27a9b8ff 100644 (file)
@@ -1,15 +1,19 @@
 #include <opkg.h>
-
+#include <stdlib.h>
 
 int
 main (int argc, char **argv)
 {
   opkg_t *opkg;
+  int err;
   
   opkg = opkg_new ();
 
   opkg_set_option (opkg, "offline_root", "/tmp/");
 
+  err = opkg_update_package_lists (opkg);
+
+  printf ("opkg_update_package_lists returned %d\n", err);
 
   opkg_free (opkg);
 }