From a86f85cb985fb4659ef5f242b8e11813d1eb282a Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 7 Mar 2007 02:02:17 +0000 Subject: [PATCH] Tests for module 'snprintf-posix'. --- ChangeLog | 3 +++ modules/snprintf-posix-tests | 15 +++++++++++++++ tests/test-snprintf-posix.c | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 modules/snprintf-posix-tests create mode 100644 tests/test-snprintf-posix.c diff --git a/ChangeLog b/ChangeLog index 8c31b574b..bf3425f36 100644 --- 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 index 000000000..cf49194b8 --- /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 index 000000000..e35e5d4e4 --- /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; +} -- 2.11.0