# HG changeset patch # User Bruno Haible # Date 1176248563 0 # Node ID 36b51a57755da8ac982ae4123dde5ffc2b698532 # Parent f682656899d36407695520be4b5382460a66f457 Tests for module 'locale'. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-04-10 Bruno Haible + * 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. diff --git a/modules/locale-tests b/modules/locale-tests 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 diff --git a/tests/test-locale.c b/tests/test-locale.c new file mode 100644 --- /dev/null +++ b/tests/test-locale.c @@ -0,0 +1,39 @@ +/* Test of 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 , 2007. */ + +#include + +#include + +int a[] = + { + LC_ALL, + LC_COLLATE, + LC_CTYPE, + LC_MESSAGES, + LC_MONETARY, + LC_NUMERIC, + LC_TIME + }; + +int +main () +{ + return 0; +}