Tests for module 'snprintf-posix'.
authorBruno Haible <bruno@clisp.org>
Wed, 7 Mar 2007 02:02:17 +0000 (02:02 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 7 Mar 2007 02:02:17 +0000 (02:02 +0000)
ChangeLog
modules/snprintf-posix-tests [new file with mode: 0644]
tests/test-snprintf-posix.c [new file with mode: 0644]

index 8c31b57..bf3425f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-03-06  Bruno Haible  <bruno@clisp.org>
 
+       * 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 (file)
index 0000000..cf49194
--- /dev/null
@@ -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 (file)
index 0000000..e35e5d4
--- /dev/null
@@ -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 <bruno@clisp.org>, 2007.  */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+
+#include <stdarg.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+
+#define ASSERT(expr) if (!(expr)) abort ();
+
+#include "test-snprintf-posix.h"
+
+int
+main (int argc, char *argv[])
+{
+  test_function (snprintf);
+  return 0;
+}