Use spaces for indentation, not tabs.
[gnulib.git] / tests / uniwbrk / test-ulc-wordbreaks.c
1 /* Test of word breaks in strings.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009.  */
18
19 #include <config.h>
20
21 #include "uniwbrk.h"
22
23 #include <locale.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
28 #define ASSERT(expr) \
29   do                                                                         \
30     {                                                                        \
31       if (!(expr))                                                           \
32         {                                                                    \
33           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
34           fflush (stderr);                                                   \
35           abort ();                                                          \
36         }                                                                    \
37     }                                                                        \
38   while (0)
39
40 int
41 main ()
42 {
43   /* configure should already have checked that the locale is supported.  */
44   if (setlocale (LC_ALL, "") == NULL)
45     return 1;
46
47   /* Test case n = 0.  */
48   ulc_wordbreaks (NULL, 0, NULL);
49
50 #if HAVE_ICONV
51   {
52     static const char input[36] =
53       /* "Grüß Gott. x=(-b±sqrt(b²-4ac))/(2a)" */
54       "Gr\374\337 Gott. x=(-b\261sqrt(b\262-4ac))/(2a)\n";
55     char *p = (char *) malloc (SIZEOF (input));
56     size_t i;
57
58     ulc_wordbreaks (input, SIZEOF (input), p);
59
60     for (i = 0; i < 36; i++)
61       {
62         ASSERT (p[i] == ((i >= 4 && i <= 5)
63                          || (i >= 9 && i <= 17)
64                          || (i >= 21 && i <= 25)
65                          || (i >= 28 && i <= 32)
66                          || (i >= 34 && i <= 35)
67                          ? 1 : 0));
68       }
69     free (p);
70   }
71 #endif
72
73   return 0;
74 }