From 870a56a1155e62284b1bc94be6f71872f9b0bf47 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 10 Apr 2007 23:42:43 +0000 Subject: [PATCH] Tests for module 'locale'. --- ChangeLog | 3 +++ modules/locale-tests | 13 +++++++++++++ tests/test-locale.c | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 modules/locale-tests create mode 100644 tests/test-locale.c diff --git a/ChangeLog b/ChangeLog index cdf4cedb0c..8c792aee1d 100644 --- 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 index 0000000000..3a5fa87059 --- /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 index 0000000000..985dbf743b --- /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; +} -- 2.30.2