opkg: add opkg_read_config_files() to libopkg_test
[project/opkg-lede.git] / tests / libopkg_test.c
index b834a7f00ea0cbcbeb2d0dc4a81e614065799bb3..fd39778d75b46465dce2a08c943fc9748c3a570c 100644 (file)
@@ -1,15 +1,21 @@
 #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/");
 
+  opkg_read_config_files (opkg);
+
+  err = opkg_update_package_lists (opkg);
+
+  printf ("opkg_update_package_lists returned %d\n", err);
 
   opkg_free (opkg);
 }