annotate tests/uniconv/test-u32-strconv-to-enc.c @ 40155:84fd38f4932c

tests: Fix some "unused variable" warnings. * tests/test-fts.c (fts_dealloc): Remove unused variable. * tests/unigbrk/test-uc-grapheme-breaks.c (main): Likewise. * tests/test-striconveh.c (main): Move some variable into the '#if HAVE_ICONV'. * tests/test-striconveha.c (main): Likewise. * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise. * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise. * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise. * tests/uniconv/test-u8-conv-to-enc.c (main): Likewise. * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise. * tests/uniconv/test-u32-conv-to-enc.c (main): Likewise. * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise. * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise. * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise. * tests/uniconv/test-u8-strconv-to-enc.c (main): Likewise. * tests/uniconv/test-u16-strconv-to-enc.c (main): Likewise. * tests/uniconv/test-u32-strconv-to-enc.c (main): Likewise. * tests/test-tsearch.c (main): Move some variable into the '#if HAVE_INITSTATE'.
author Bruno Haible <bruno@clisp.org>
date Sun, 27 Jan 2019 12:24:47 +0100
parents b06060465f09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Test of conversion from UTF-32 to legacy encodings.
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 Copyright (C) 2007-2019 Free Software Foundation, Inc.
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8951
diff changeset
4 This program is free software: you can redistribute it and/or modify
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8951
diff changeset
6 the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 8951
diff changeset
7 (at your option) any later version.
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 GNU General Public License for more details.
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
8892
4f6a4b1d68a8 Assume <config.h> exists.
Bruno Haible <bruno@clisp.org>
parents: 8754
diff changeset
19 #include <config.h>
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include "uniconv.h"
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 #include <errno.h>
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 #include <stdlib.h>
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 #include <string.h>
12496
a48d3d749ca5 Refactor common macros used in tests.
Bruno Haible <bruno@clisp.org>
parents: 12421
diff changeset
26 #include "macros.h"
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 int
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 main ()
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 {
40155
84fd38f4932c tests: Fix some "unused variable" warnings.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
31 #if HAVE_ICONV
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 static enum iconv_ilseq_handler handlers[] =
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 { iconveh_error, iconveh_question_mark, iconveh_escape_sequence };
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 size_t h;
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 /* Assume that iconv() supports at least the encodings ASCII, ISO-8859-1,
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 ISO-8859-2, and UTF-8. */
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 /* Test conversion from UTF-32 to ISO-8859-1 with no errors. */
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 for (h = 0; h < SIZEOF (handlers); h++)
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 {
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
42 enum iconv_ilseq_handler handler = handlers[h];
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
43 static const uint32_t input[] = /* Ärger mit bösen Bübchen ohne Augenmaß */
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
44 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
45 0xC4, 'r', 'g', 'e', 'r', ' ', 'm', 'i', 't', ' ', 'b', 0xF6, 's',
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
46 'e', 'n', ' ', 'B', 0xFC, 'b', 'c', 'h', 'e', 'n', ' ', 'o', 'h',
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
47 'n', 'e', ' ', 'A', 'u', 'g', 'e', 'n', 'm', 'a', 0xDF, 0
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
48 };
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
49 static const char expected[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 char *result = u32_strconv_to_encoding (input, "ISO-8859-1", handler);
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51 ASSERT (result != NULL);
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 ASSERT (strcmp (result, expected) == 0);
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 free (result);
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 }
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
55
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
56 /* Test conversion from UTF-32 to ISO-8859-1 with EILSEQ. */
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
57 for (h = 0; h < SIZEOF (handlers); h++)
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
58 {
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
59 enum iconv_ilseq_handler handler = handlers[h];
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
60 static const uint32_t input[] = /* Rafał Maszkowski */
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
61 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
62 'R', 'a', 'f', 'a', 0x0142, ' ', 'M', 'a', 's', 'z', 'k', 'o', 'w',
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
63 's', 'k', 'i', 0
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
64 };
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
65 char *result = u32_strconv_to_encoding (input, "ISO-8859-1", handler);
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
66 switch (handler)
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
67 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
68 case iconveh_error:
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
69 ASSERT (result == NULL && errno == EILSEQ);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
70 break;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
71 case iconveh_question_mark:
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
72 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
73 static const char expected[] = "Rafa? Maszkowski";
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
74 static const char expected_translit[] = "Rafal Maszkowski";
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
75 ASSERT (result != NULL);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
76 ASSERT (strcmp (result, expected) == 0
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
77 || strcmp (result, expected_translit) == 0);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
78 free (result);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
79 }
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
80 break;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
81 case iconveh_escape_sequence:
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
82 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
83 static const char expected[] = "Rafa\\u0142 Maszkowski";
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
84 ASSERT (result != NULL);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
85 ASSERT (strcmp (result, expected) == 0);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
86 free (result);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
87 }
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
88 break;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9889
diff changeset
89 }
7966
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
90 }
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
91
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
92 #endif
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
93
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
94 return 0;
d19e1a34d9b5 Tests for module 'uniconv/u32-strconv-to-enc'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
95 }