summaryrefslogtreecommitdiffstats
path: root/tests/libopkg_test.c
blob: 9146d0c84d5090d0656a22ac6c53dd8b27a9b8ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}