sigprocmask: Fix configuration failure on Solaris 10 (regr. 2020-07-25).
[gnulib.git] / tests / unistr / test-u32-prev.c
blob38f6bd534ee30382934abad2bebaad95d4899c74
1 /* Test of u32_prev() function.
2 Copyright (C) 2010-2020 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>, 2010. */
19 #include <config.h>
21 #include "unistr.h"
23 #include "macros.h"
25 static int
26 check (const uint32_t *input, size_t input_length, ucs4_t *puc)
28 ucs4_t uc;
30 /* Test recognition when at the beginning of the string. */
31 if (u32_prev (&uc, input + input_length, input) != input)
32 return 1;
34 /* Test recognition when preceded by a 1-unit character. */
36 uint32_t buf[100];
37 uint32_t *ptr;
38 size_t i;
39 ucs4_t uc1;
41 ptr = buf;
42 *ptr++ = 0x1D51E;
43 for (i = 0; i < input_length; i++)
44 ptr[i] = input[i];
46 if (u32_prev (&uc1, ptr + input_length, buf) != ptr)
47 return 2;
48 if (uc1 != uc)
49 return 3;
52 *puc = uc;
53 return 0;
56 static int
57 check_invalid (const uint32_t *input, size_t input_length)
59 ucs4_t uc;
61 /* Test recognition when at the beginning of the string. */
62 uc = 0xBADFACE;
63 if (u32_prev (&uc, input + input_length, input) != NULL)
64 return 1;
65 if (uc != 0xBADFACE)
66 return 2;
68 /* Test recognition when preceded by a 1-unit character. */
70 uint32_t buf[100];
71 uint32_t *ptr;
72 size_t i;
74 ptr = buf;
75 *ptr++ = 0x1D51E;
76 for (i = 0; i < input_length; i++)
77 ptr[i] = input[i];
79 uc = 0xBADFACE;
80 if (u32_prev (&uc, ptr + input_length, buf) != NULL)
81 return 3;
82 if (uc != 0xBADFACE)
83 return 4;
86 return 0;
89 int
90 main ()
92 ucs4_t uc;
94 /* Test ISO 646 unit input. */
96 ucs4_t c;
97 uint32_t buf[1];
99 for (c = 0; c < 0x80; c++)
101 buf[0] = c;
102 uc = 0xBADFACE;
103 ASSERT (check (buf, 1, &uc) == 0);
104 ASSERT (uc == c);
108 /* Test BMP unit input. */
110 static const uint32_t input[] = { 0x20AC };
111 uc = 0xBADFACE;
112 ASSERT (check (input, SIZEOF (input), &uc) == 0);
113 ASSERT (uc == 0x20AC);
116 /* Test non-BMP unit input. */
118 static const uint32_t input[] = { 0x1D51F };
119 uc = 0xBADFACE;
120 ASSERT (check (input, SIZEOF (input), &uc) == 0);
121 ASSERT (uc == 0x1D51F);
124 /* Test incomplete/invalid 1-unit input. */
126 static const uint32_t input[] = { 0x340000 };
127 ASSERT (check_invalid (input, SIZEOF (input)) == 0);
130 return 0;