]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Moved test add_config_from_confit to tools.
authorAndrea Zagli <azagli@libero.it>
Sat, 5 Nov 2016 11:22:49 +0000 (12:22 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 5 Nov 2016 11:22:49 +0000 (12:22 +0100)
.gitignore
Makefile.am
configure.ac
tests/Makefile.am
tests/test_add_config_from_confi.c [deleted file]
tools/Makefile.am [new file with mode: 0644]
tools/add_config_from_confi.c [new file with mode: 0644]

index b04bb01df8b0950c1ace58769bb615d34fb4380a..010c263f6bfea4c4633a527c6fcb0020aad9f38b 100644 (file)
@@ -52,8 +52,8 @@ tests/test
 tests/test_get_configs_list
 tests/test_get_tree
 tests/test_add_config
-tests/test_add_config_from_confi
 tests/test_set_config
+tools/add_config_from_confi
 *.csv
 gtk-doc.m4
 *.gir
index a066227af6ed602ca4fdb3e02af609757560d538..5365a8b04fd7ac511ac5701460cb4a5194e93aea 100644 (file)
@@ -1,6 +1,6 @@
 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
 
-SUBDIRS = src plugins tests data docs
+SUBDIRS = src plugins tools tests data docs
 
 EXTRA_DIST = libzakconfi.pc.in
 
index 15b4d4d83cdec168c16dfb72b2b01bcae193571a..c57c16af1f6921378229da1bd600ff34bc60fb79 100644 (file)
@@ -62,6 +62,7 @@ AC_CONFIG_FILES([
   plugins/db/Makefile
   plugins/file/Makefile
   tests/Makefile
+  tools/Makefile
   data/Makefile
   docs/Makefile
   docs/reference/Makefile
index bf61e142645feb5b4bad0d9de05b06b0c830a290..5820ef689b58aef303cc23e9652649104a2e8a00 100644 (file)
@@ -12,7 +12,6 @@ LDADD = $(top_builddir)/src/libzakconfi.la
 
 noinst_PROGRAMS = test \
                   test_add_config \
-                  test_add_config_from_confi \
                   test_get_configs_list \
                   test_get_tree \
                   test_set_config
diff --git a/tests/test_add_config_from_confi.c b/tests/test_add_config_from_confi.c
deleted file mode 100644 (file)
index 4b24098..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
- *  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#include <glib/gprintf.h>
-#include <libpeas/peas.h>
-
-#include "libzakconfi.h"
-
-int
-main (int argc, char **argv)
-{
-       PeasEngine *engine;
-
-       ZakConfi *confi;
-
-       if (argc < 5)
-               {
-                       g_error ("Usage: test_add_config <connection string source> <connection string destination> <config name> <config description>");
-                       return 0;
-               }
-
-       engine = peas_engine_get_default ();
-       peas_engine_add_search_path (engine, PLUGINSDIR, NULL);
-
-       confi = zak_confi_new (argv[1]);
-
-       if (zak_confi_add_config_from_confi (confi, argv[2], argv[3], argv[4]) == NULL)
-               {
-                       g_warning ("Config %s not created.", argv[2]);
-               }
-
-       return 0;
-}
diff --git a/tools/Makefile.am b/tools/Makefile.am
new file mode 100644 (file)
index 0000000..0102808
--- /dev/null
@@ -0,0 +1,13 @@
+AM_CPPFLAGS = $(WARN_CFLAGS) \
+              $(DISABLE_DEPRECATED_CFLAGS) \
+              $(LIBCONFI_CFLAGS) \
+              -I$(top_srcdir)/src \
+              -DPLUGINSDIR=\""$(libdir)/$(PACKAGE)/plugins"\"
+
+LIBS = $(LIBCONFI_LIBS) \
+       -L../src -lzakconfi \
+       -export-dynamic
+
+LDADD = $(top_builddir)/src/libzakconfi.la
+
+noinst_PROGRAMS = add_config_from_confi
diff --git a/tools/add_config_from_confi.c b/tools/add_config_from_confi.c
new file mode 100644 (file)
index 0000000..f069d19
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakconfi.h"
+
+int
+main (int argc, char **argv)
+{
+       PeasEngine *engine;
+
+       ZakConfi *confi;
+
+       if (argc < 5)
+               {
+                       g_error ("Usage: add_config_from_confi <connection string source> <connection string destination> <config name> <config description>");
+                       return 0;
+               }
+
+       engine = peas_engine_get_default ();
+       peas_engine_add_search_path (engine, PLUGINSDIR, NULL);
+
+       confi = zak_confi_new (argv[1]);
+
+       if (zak_confi_add_config_from_confi (confi, argv[2], argv[3], argv[4]) == NULL)
+               {
+                       g_warning ("Config %s not created.", argv[2]);
+               }
+
+       return 0;
+}