annotate tests/uninorm/test-u32-nfd-big.c @ 13073:03de1efbfdd3

Resolve conflict between the two kinds of module indicators.
author Bruno Haible <bruno@clisp.org>
date Sun, 28 Mar 2010 01:29:52 +0100
parents c2cbabec01dd
children 97fc9a21a8fb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Test of Unicode compliance of canonical decomposition of UTF-32 strings.
12559
c2cbabec01dd update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents: 12421
diff changeset
2 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 This program is free software: you can redistribute it and/or modify
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 (at your option) any later version.
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009. */
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 #include <config.h>
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
13073
03de1efbfdd3 Resolve conflict between the two kinds of module indicators.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
21 #if GNULIB_TEST_UNINORM_U32_NORMALIZE
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 #include "uninorm.h"
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 #include <stdlib.h>
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 #include "unistr.h"
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 #include "progname.h"
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 #include "test-u32-normalize-big.h"
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 static int
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 check (const uint32_t *c1, size_t c1_length,
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 const uint32_t *c2, size_t c2_length,
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 const uint32_t *c3, size_t c3_length,
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 const uint32_t *c4, size_t c4_length,
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 const uint32_t *c5, size_t c5_length)
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 /* Check
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 c3 == NFD(c1) == NFD(c2) == NFD(c3)
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 c5 == NFD(c4) == NFD(c5)
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 */
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 size_t length;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 uint32_t *result;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 result = u32_normalize (UNINORM_NFD, c1, c1_length, NULL, &length);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 if (!(result != NULL
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
48 && length == c3_length
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
49 && u32_cmp (result, c3, c3_length) == 0))
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 return 1;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51 free (result);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 size_t length;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
55 uint32_t *result;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
56
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
57 result = u32_normalize (UNINORM_NFD, c2, c2_length, NULL, &length);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
58 if (!(result != NULL
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
59 && length == c3_length
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
60 && u32_cmp (result, c3, c3_length) == 0))
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
61 return 2;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
62 free (result);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
63 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
64 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
65 size_t length;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
66 uint32_t *result;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
67
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
68 result = u32_normalize (UNINORM_NFD, c3, c3_length, NULL, &length);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
69 if (!(result != NULL
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
70 && length == c3_length
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
71 && u32_cmp (result, c3, c3_length) == 0))
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
72 return 3;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
73 free (result);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
74 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
75 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
76 size_t length;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
77 uint32_t *result;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
78
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
79 result = u32_normalize (UNINORM_NFD, c4, c4_length, NULL, &length);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
80 if (!(result != NULL
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
81 && length == c5_length
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
82 && u32_cmp (result, c5, c5_length) == 0))
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
83 return 4;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
84 free (result);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
85 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
86 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
87 size_t length;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
88 uint32_t *result;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
89
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
90 result = u32_normalize (UNINORM_NFD, c5, c5_length, NULL, &length);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
91 if (!(result != NULL
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
92 && length == c5_length
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 11193
diff changeset
93 && u32_cmp (result, c5, c5_length) == 0))
11193
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
94 return 5;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
95 free (result);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
96 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
97 return 0;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
98 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
99
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
100 int
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
101 main (int argc, char *argv[])
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
102 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
103 struct normalization_test_file file;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
104
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
105 set_program_name (argv[0]);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
106 read_normalization_test_file (argv[1], &file);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
107
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
108 test_specific (&file, check);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
109 test_other (&file, UNINORM_NFD);
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
110
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
111 return 0;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
112 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
113
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
114 #else
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
115
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
116 #include <stdio.h>
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
117
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
118 int
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
119 main ()
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
120 {
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
121 fprintf (stderr, "Skipping test: uninorm/u32-normalize module not included.\n");
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
122 return 77;
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
123 }
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
124
531b88e0986f Tests for module 'uninorm/nfd'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
125 #endif