1 /* Test of quotearg family of functions.
2 Copyright (C) 2008-2024 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, or (at your option)
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 Eric Blake <ebb9@byu.net>, 2008. */
33 # include "test-quotearg.h"
35 static struct result_groups locale_results
[] = {
36 /* locale_quoting_style */
37 { { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
38 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a:b" RQ
, LQ
"a\\\\b" RQ
,
39 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
},
40 { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
41 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a:b" RQ
, LQ
"a\\\\b" RQ
,
42 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
},
43 { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
44 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a\\:b" RQ
, LQ
"a\\\\b" RQ
,
45 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
} },
47 /* clocale_quoting_style */
48 { { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
49 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a:b" RQ
, LQ
"a\\\\b" RQ
,
50 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
},
51 { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
52 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a:b" RQ
, LQ
"a\\\\b" RQ
,
53 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
},
54 { LQ RQ
, LQ
"\\0001\\0" RQ
, 11, LQ
"simple" RQ
, LQ
"\\t'\\t" RQ
,
55 LQ
" \\t\\n'\"\\033?""?/\\\\" RQ
, LQ
"a\\:b" RQ
, LQ
"a\\\\b" RQ
,
56 LQ
"a' b" RQ
, LQ LQ RQ_ESC RQ
, LQ LQ RQ_ESC RQ
} }
59 #endif /* ENABLE_NLS */
62 main (_GL_UNUSED
int argc
, char *argv
[])
65 /* Clean up environment. */
66 unsetenv ("LANGUAGE");
68 unsetenv ("LC_MESSAGES");
69 unsetenv ("LC_CTYPE");
71 unsetenv ("OUTPUT_CHARSET");
73 /* This program part runs in a French UTF-8 locale. It uses
74 the test-quotearg.mo message catalog. */
76 const char *locale_name
= getenv ("LOCALE");
78 if (!(locale_name
!= NULL
&& strcmp (locale_name
, "none") != 0
79 && setenv ("LC_ALL", locale_name
, 1) == 0
80 && setlocale (LC_ALL
, "") != NULL
))
82 fputs ("Skipping test: no french Unicode locale is installed\n", stderr
);
85 textdomain ("test-quotearg");
86 bindtextdomain ("test-quotearg", getenv ("LOCALEDIR"));
88 set_quoting_style (NULL
, locale_quoting_style
);
89 compare_strings (use_quotearg_buffer
, &locale_results
[0].group1
, false);
90 compare_strings (use_quotearg
, &locale_results
[0].group2
, false);
91 compare_strings (use_quotearg_colon
, &locale_results
[0].group3
, false);
93 set_quoting_style (NULL
, clocale_quoting_style
);
94 compare_strings (use_quotearg_buffer
, &locale_results
[1].group1
, false);
95 compare_strings (use_quotearg
, &locale_results
[1].group2
, false);
96 compare_strings (use_quotearg_colon
, &locale_results
[1].group3
, false);
99 return test_exit_status
;
103 fputs ("Skipping test: internationalization is disabled\n", stderr
);
105 #endif /* ENABLE_NLS */