changeset 8661:36b51a57755d

Tests for module 'locale'.
author Bruno Haible <bruno@clisp.org>
date Tue, 10 Apr 2007 23:42:43 +0000
parents f682656899d3
children 023aa5c883a7
files ChangeLog modules/locale-tests tests/test-locale.c
diffstat 3 files changed, 55 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-04-10  Bruno Haible  <bruno@clisp.org>
 
+	* modules/locale-tests: New file.
+	* tests/test-locale.c: New file.
+
 	* modules/locale: New file.
 	* lib/locale_.h: New file.
 	* m4/locale_h.m4: New file.
new file mode 100644
--- /dev/null
+++ b/modules/locale-tests
@@ -0,0 +1,13 @@
+Files:
+tests/test-locale.c
+
+Depends-on:
+
+configure.ac:
+
+Makefile.am:
+TESTS += test-locale
+check_PROGRAMS += test-locale
+
+License:
+LGPL
new file mode 100644
--- /dev/null
+++ b/tests/test-locale.c
@@ -0,0 +1,39 @@
+/* Test of <locale.h> substitute.
+   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.  */
+
+#include <config.h>
+
+#include <locale.h>
+
+int a[] =
+  {
+    LC_ALL,
+    LC_COLLATE,
+    LC_CTYPE,
+    LC_MESSAGES,
+    LC_MONETARY,
+    LC_NUMERIC,
+    LC_TIME
+  };
+
+int
+main ()
+{
+  return 0;
+}