From: Andrea Zagli Date: Mon, 12 Dec 2016 10:24:38 +0000 (+0100) Subject: Added test for ::get_gdatetime_from_string. X-Git-Tag: v0.0.2~1^2~4 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=ef53e551efab1836c4321624478eb6f8b7b9aa4b;p=libzakutils Added test for ::get_gdatetime_from_string. --- diff --git a/.gitignore b/.gitignore index 5781664..b686cbc 100644 --- a/.gitignore +++ b/.gitignore @@ -51,4 +51,5 @@ Rules-quot *.exe *.csv tests/format_money +tests/gdatetime_from_string build/ \ No newline at end of file diff --git a/tests/Makefile.am b/tests/Makefile.am index 104ca63..5fb7293 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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 index 0000000..01cd7e5 --- /dev/null +++ b/tests/gdatetime_from_string.c @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2016 Andrea Zagli + * + * 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; +} diff --git a/tests/meson.build b/tests/meson.build index 542edf2..a4624ce 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -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)