From ec79b834e77832f003908c7af0214ec83cf5d4c4 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 10 Jan 2010 23:47:04 +0100 Subject: [PATCH] Tests for module 'unistr/u32-strcoll'. --- ChangeLog | 4 ++++ modules/unistr/u32-strcoll-tests | 14 +++++++++++ tests/unistr/test-u32-strcoll.c | 41 ++++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 modules/unistr/u32-strcoll-tests create mode 100644 tests/unistr/test-u32-strcoll.c diff --git a/ChangeLog b/ChangeLog index ef96b26683..0cd81d7240 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-01-10 Bruno Haible + Tests for module 'unistr/u32-strcoll'. + * modules/unistr/u32-strcoll-tests: New file. + * tests/unistr/test-u32-strcoll.c: New file. + Tests for module 'unistr/u16-strcoll'. * modules/unistr/u16-strcoll-tests: New file. * tests/unistr/test-u16-strcoll.c: New file. diff --git a/modules/unistr/u32-strcoll-tests b/modules/unistr/u32-strcoll-tests new file mode 100644 index 0000000000..962ca4b941 --- /dev/null +++ b/modules/unistr/u32-strcoll-tests @@ -0,0 +1,14 @@ +Files: +tests/unistr/test-u32-strcoll.c +tests/unistr/test-u32-strcmp.h +tests/unistr/test-strcmp.h +tests/macros.h + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-u32-strcoll +check_PROGRAMS += test-u32-strcoll +test_u32_strcoll_SOURCES = unistr/test-u32-strcoll.c diff --git a/tests/unistr/test-u32-strcoll.c b/tests/unistr/test-u32-strcoll.c new file mode 100644 index 0000000000..36954e73fd --- /dev/null +++ b/tests/unistr/test-u32-strcoll.c @@ -0,0 +1,41 @@ +/* Test of u32_strcoll() function. + Copyright (C) 2010 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 , 2010. */ + +#include + +#include "unistr.h" + +#include "macros.h" + +#define U_STRCMP u32_strcoll +#include "test-u32-strcmp.h" + +int +main () +{ + /* This test relies on three facts: + - setlocale is not being called, therefore the locale is the "C" locale. + - In the "C" locale, strcoll is equivalent to strcmp. + - In the u32_strcoll implementation, Unicode strings that are not + convertible to the locale encoding are sorted higher than convertible + strings and compared according to u32_strcmp. */ + + test_u32_strcmp (); + + return 0; +} -- 2.30.2