From: Bruno Haible Date: Fri, 24 Mar 2023 10:13:47 +0000 (+0100) Subject: snprintf-gnu: Add tests. X-Git-Tag: v1.0~1594 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=0bba8aca9171f8b2e8835b0e2733541e8f119496;p=gnulib.git snprintf-gnu: Add tests. * tests/test-snprintf-gnu.c: New file, based on tests/test-snprintf-posix.c. * modules/snprintf-gnu-tests: New file, based on modules/snprintf-posix-tests. --- diff --git a/ChangeLog b/ChangeLog index 1b5e632a96..826526d567 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2023-03-24 Bruno Haible + snprintf-gnu: Add tests. + * tests/test-snprintf-gnu.c: New file, based on + tests/test-snprintf-posix.c. + * modules/snprintf-gnu-tests: New file, based on + modules/snprintf-posix-tests. + snprintf-gnu: New module. * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_IS_POSIX): New macro, extracted from gl_FUNC_SNPRINTF_POSIX. diff --git a/modules/snprintf-gnu-tests b/modules/snprintf-gnu-tests new file mode 100644 index 0000000000..57ff66dc95 --- /dev/null +++ b/modules/snprintf-gnu-tests @@ -0,0 +1,13 @@ +Files: +tests/test-snprintf-gnu.c +tests/test-snprintf-gnu.h +tests/macros.h + +Depends-on: +snprintf-posix-tests + +configure.ac: + +Makefile.am: +TESTS += test-snprintf-gnu +check_PROGRAMS += test-snprintf-gnu diff --git a/tests/test-snprintf-gnu.c b/tests/test-snprintf-gnu.c new file mode 100644 index 0000000000..29f40cadfd --- /dev/null +++ b/tests/test-snprintf-gnu.c @@ -0,0 +1,35 @@ +/* Test of POSIX and GNU compatible snprintf() function. + Copyright (C) 2007-2023 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 3 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, see . */ + +/* Written by Bruno Haible , 2007. */ + +#include + +#include + +#include +#include + +#include "macros.h" + +#include "test-snprintf-gnu.h" + +int +main (int argc, char *argv[]) +{ + test_function (snprintf); + return 0; +}