Add skeleton for QCDM test program
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 9 Apr 2010 23:33:47 +0000 (01:33 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 9 Apr 2010 23:33:47 +0000 (01:33 +0200)
Makefile.am
gatchat/test-qcdm.c [new file with mode: 0644]

index dee4dc7..d89c47e 100644 (file)
@@ -341,16 +341,17 @@ unit_test_caif_SOURCES = unit/test-caif.c $(gatchat_sources) \
 unit_test_caif_LDADD = @GLIB_LIBS@
 unit_objects += $(unit_test_caif_OBJECTS)
 
-noinst_PROGRAMS += gatchat/gsmdial gatchat/test-server
+noinst_PROGRAMS += gatchat/gsmdial gatchat/test-server gatchat/test-qcdm
 
 gatchat_gsmdial_SOURCES = gatchat/gsmdial.c $(gatchat_sources)
-
 gatchat_gsmdial_LDADD = @GLIB_LIBS@
 
 gatchat_test_server_SOURCES = gatchat/test-server.c $(gatchat_sources)
-
 gatchat_test_server_LDADD = @GLIB_LIBS@ -lutil
 
+gatchat_test_qcdm_SOURCES = gatchat/test-qcdm.c $(gatchat_sources)
+gatchat_test_qcdm_LDADD = @GLIB_LIBS@
+
 
 DISTCHECK_CONFIGURE_FLAGS = --disable-datafiles
 
diff --git a/gatchat/test-qcdm.c b/gatchat/test-qcdm.c
new file mode 100644 (file)
index 0000000..ca304bc
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ *
+ *  oFono - Open Source Telephony
+ *
+ *  Copyright (C) 2008-2010  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;
+}