# HG changeset patch # User Bruno Haible # Date 1173232937 0 # Node ID 271c916ae8f9b6a1b3db1688bc0f83e7413d2208 # Parent 9b66860c24823fd97543c733dc65f27bda40e9de Tests for module 'snprintf-posix'. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-03-06 Bruno Haible + * modules/snprintf-posix-tests: New file. + * tests/test-snprintf-posix.c: New file. + * modules/snprintf-posix: New file. * m4/snprintf-posix.m4: New file. * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from diff --git a/modules/snprintf-posix-tests b/modules/snprintf-posix-tests new file mode 100644 --- /dev/null +++ b/modules/snprintf-posix-tests @@ -0,0 +1,15 @@ +Files: +tests/test-snprintf-posix.c +tests/test-snprintf-posix.h +m4/longdouble.m4 + +Depends-on: +stdint + +configure.ac: +AC_REQUIRE([gt_TYPE_LONGDOUBLE]) + +Makefile.am: +TESTS += test-snprintf-posix +check_PROGRAMS += test-snprintf-posix + diff --git a/tests/test-snprintf-posix.c b/tests/test-snprintf-posix.c new file mode 100644 --- /dev/null +++ b/tests/test-snprintf-posix.c @@ -0,0 +1,41 @@ +/* Test of POSIX compatible snprintf() function. + Copyright (C) 2007 Free Software Foundation, Inc. + + 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, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +/* Written by Bruno Haible , 2007. */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include + +#include +#include +#include +#include +#include + +#define ASSERT(expr) if (!(expr)) abort (); + +#include "test-snprintf-posix.h" + +int +main (int argc, char *argv[]) +{ + test_function (snprintf); + return 0; +}