floor, ceil, trunc, truncf, truncl: Defeat GCC optimizations.
[gnulib.git] / tests / uninorm / test-uninorm-filter-nfc.c
blob90ff82bbe875c9a6791b397bdcd5b818c4ebc0dd
1 /* Test of canonical normalization of streams.
2 Copyright (C) 2009-2018 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009. */
19 #include <config.h>
21 #include "uninorm.h"
23 #include <stdlib.h>
25 #include "unistr.h"
26 #include "macros.h"
28 /* A stream of Unicode characters that simply accumulates the contents. */
30 struct accumulator
32 uint32_t *result;
33 size_t length;
34 size_t allocated;
37 static int
38 write_to_accumulator (void *stream_data, ucs4_t uc)
40 struct accumulator *accu = (struct accumulator *) stream_data;
42 if (accu->length == accu->allocated)
44 accu->allocated = 2 * accu->allocated + 1;
45 accu->result = (uint32_t *) realloc (accu->result, accu->allocated * sizeof (uint32_t));
47 accu->result[accu->length] = uc;
48 accu->length++;
49 return 0;
52 static int
53 check (const uint32_t *input, size_t input_length,
54 const uint32_t *expected, size_t expected_length)
56 struct accumulator accu;
57 struct uninorm_filter *filter;
58 size_t i;
60 accu.result = NULL;
61 accu.length = 0;
62 accu.allocated = 0;
64 filter = uninorm_filter_create (UNINORM_NFC, write_to_accumulator, &accu);
65 ASSERT (filter != NULL);
67 for (i = 0; i < input_length; i++)
68 ASSERT (uninorm_filter_write (filter, input[i]) == 0);
70 ASSERT (uninorm_filter_free (filter) == 0);
72 if (!(accu.result != NULL))
73 return 1;
74 if (!(accu.length == expected_length))
75 return 2;
76 if (!(u32_cmp (accu.result, expected, expected_length) == 0))
77 return 3;
78 free (accu.result);
80 return 0;
83 int
84 main ()
86 { /* "Grüß Gott. Здравствуйте! x=(-b±sqrt(b²-4ac))/(2a) 日本語,中文,한글" */
87 static const uint32_t input[] =
88 { 'G', 'r', 0x00FC, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
89 0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
90 0x0439, 0x0442, 0x0435, '!', ' ',
91 'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
92 '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
93 0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',', 0xD55C, 0xAE00, '\n'
95 static const uint32_t decomposed[] =
96 { 'G', 'r', 0x0075, 0x0308, 0x00DF, ' ', 'G', 'o', 't', 't', '.', ' ',
97 0x0417, 0x0434, 0x0440, 0x0430, 0x0432, 0x0441, 0x0442, 0x0432, 0x0443,
98 0x0438, 0x0306, 0x0442, 0x0435, '!', ' ',
99 'x', '=', '(', '-', 'b', 0x00B1, 's', 'q', 'r', 't', '(', 'b', 0x00B2,
100 '-', '4', 'a', 'c', ')', ')', '/', '(', '2', 'a', ')', ' ', ' ',
101 0x65E5, 0x672C, 0x8A9E, ',', 0x4E2D, 0x6587, ',',
102 0x1112, 0x1161, 0x11AB, 0x1100, 0x1173, 0x11AF, '\n'
104 ASSERT (check (input, SIZEOF (input), input, SIZEOF (input)) == 0);
105 ASSERT (check (decomposed, SIZEOF (decomposed), input, SIZEOF (input)) == 0);
108 return 0;