Add skeleton for supplicant test tool
authorMarcel Holtmann <marcel@holtmann.org>
Wed, 23 Dec 2009 11:15:10 +0000 (03:15 -0800)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 23 Dec 2009 11:15:10 +0000 (03:15 -0800)
.gitignore
Makefile.am
tools/supplicant-test.c [new file with mode: 0644]

index 29a53d0..72926e6 100644 (file)
@@ -44,6 +44,7 @@ tools/wifi-scan
 tools/addr-test
 tools/tap-test
 tools/polkit-test
+tools/supplicant-test
 doc/*.bak
 doc/*.stamp
 doc/connman.*
index 9f1712e..e923ec8 100644 (file)
@@ -113,11 +113,13 @@ client_cm_LDADD = @DBUS_LIBS@
 endif
 
 if TOOLS
-noinst_PROGRAMS += tools/wifi-scan tools/addr-test tools/tap-test \
-                                                       tools/polkit-test
+noinst_PROGRAMS += tools/wifi-scan tools/supplicant-test \
+                       tools/addr-test tools/tap-test tools/polkit-test
 
 tools_wifi_scan_LDADD = @GLIB_LIBS@ @NETLINK_LIBS@
 
+tools_supplicant_test_LDADD = @GLIB_LIBS@ @DBUS_LIBS@
+
 tools_polkit_test_LDADD = @DBUS_LIBS@
 endif
 
diff --git a/tools/supplicant-test.c b/tools/supplicant-test.c
new file mode 100644 (file)
index 0000000..6f110c1
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ *
+ *  Connection Manager
+ *
+ *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2 as
+ *  published by the Free Software Foundation.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+int main(int argc, char *argv[])
+{
+       return 0;
+}