From 1a135f3cd5b63cfd594bcaee7b2d9b90f6c2acef Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:09:52 -0500 Subject: opkg: add libopkg test application git-svn-id: http://opkg.googlecode.com/svn/trunk@73 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'tests/libopkg_test.c') diff --git a/tests/libopkg_test.c b/tests/libopkg_test.c new file mode 100644 index 0000000..b834a7f --- /dev/null +++ b/tests/libopkg_test.c @@ -0,0 +1,15 @@ +#include + + +int +main (int argc, char **argv) +{ + opkg_t *opkg; + + opkg = opkg_new (); + + opkg_set_option (opkg, "offline_root", "/tmp/"); + + + opkg_free (opkg); +} -- cgit v0.9.1