]> saetta.ns0.it Git - libzakutils/commitdiff
Added test for ::get_gdatetime_from_string.
authorAndrea Zagli <azagli@libero.it>
Mon, 12 Dec 2016 10:24:38 +0000 (11:24 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 12 Dec 2016 10:30:23 +0000 (11:30 +0100)
.gitignore
tests/Makefile.am
tests/gdatetime_from_string.c [new file with mode: 0644]
tests/meson.build

index 57816643cb820d665d89636a4c1d175a2aadbeb0..b686cbcddd7dbe9bd652f41ad1f08440178aa47b 100644 (file)
@@ -51,4 +51,5 @@ Rules-quot
 *.exe
 *.csv
 tests/format_money
+tests/gdatetime_from_string
 build/
\ No newline at end of file
index 104ca6319f4836184be30a0aa2e3516ed5b424d1..5fb7293be2c88903f630ebaa83e26f8f2f51c191 100644 (file)
@@ -6,9 +6,8 @@ AM_CPPFLAGS = $(WARN_CFLAGS) \
 LIBS = $(ZAKUTILS_LIBS) \
        -export-dynamic
 
-LDADD = $(top_builddir)/src/libzakutils.la
+LDADD = $(top_builddir)/src/libzakutils.la -lm
 
 noinst_PROGRAMS = \
-                  format_money
-
-format_money_LDADD = $(top_builddir)/src/libzakutils.la -lm
+                  format_money \
+                  gdatetime_from_string
diff --git a/tests/gdatetime_from_string.c b/tests/gdatetime_from_string.c
new file mode 100644 (file)
index 0000000..01cd7e5
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "datetime.h"
+
+int
+main (int argc, char *argv[])
+{
+       gchar *str;
+       gchar *format;
+
+       str = argv[1];
+
+       if (argc > 2)
+               {
+                       format = argv[2];
+               }
+       else
+               {
+                       format = NULL;
+               }
+
+       g_message ("DATE TIME: %s", zak_utils_gdatetime_format (zak_utils_get_gdatetime_from_string (str, format), "%F %T"));
+
+       return 0;
+}
index 542edf2a7ac0ba644254c2de1d296f2103bfb88f..a4624ce1e1af5d30a33fe620fe74fbe1cd07e04e 100644 (file)
@@ -1,4 +1,9 @@
 format_money_exe = executable('format_money', 'format_money.c',
                               include_directories: inc,
                               dependencies: [glib_dep, gobject_dep, gio_dep],
-                              link_with: libzakutils)
\ No newline at end of file
+                              link_with: libzakutils)
+
+gdatetime_from_string_exe = executable('gdatetime_from_string', 'gdatetime_from_string.c',
+                              include_directories: inc,
+                              dependencies: [glib_dep, gobject_dep, gio_dep],
+                              link_with: libzakutils)