2.9
[glibc/nacl-glibc.git] / posix / bug-regex17.c
blobb42f9b6c1222d03d24470b136ca046dda8c36557
1 /* Turkish regular expression tests.
2 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <sys/types.h>
22 #include <mcheck.h>
23 #include <regex.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <locale.h>
28 /* Tests supposed to match. */
29 struct
31 const char *pattern;
32 const char *string;
33 int flags, nmatch;
34 regmatch_t rm[5];
35 } tests[] = {
36 /* \xc3\x84 LATIN CAPITAL LETTER A WITH DIAERESIS
37 \xc3\x96 LATIN CAPITAL LETTER O WITH DIAERESIS
38 \xc3\xa4 LATIN SMALL LETTER A WITH DIAERESIS
39 \xc3\xb6 LATIN SMALL LETTER O WITH DIAERESIS */
40 { "\xc3\x84\xc3\x96*\xc3\xb6$", "aB\xc3\xa4\xc3\xb6\xc3\xb6\xc3\x96", REG_ICASE, 2,
41 { { 2, 10 }, { -1, -1 } } },
42 { "[\xc3\x84x]\xc3\x96*\xc3\xb6$", "aB\xc3\x84\xc3\xb6\xc3\xb6\xc3\x96", REG_ICASE, 2,
43 { { 2, 10 }, { -1, -1 } } },
44 { "[\xc3\x84x]\xc3\x96*\xc3\xb6$", "aB\xc3\xa4\xc3\xb6\xc3\xb6\xc3\x96", REG_ICASE, 2,
45 { { 2, 10 }, { -1, -1 } } },
46 { "[^x]\xc3\x96*\xc3\xb6$", "aB\xc3\xa4\xc3\xb6\xc3\xb6\xc3\x96", REG_ICASE, 2,
47 { { 2, 10 }, { -1, -1 } } },
50 int
51 main (void)
53 regex_t re;
54 regmatch_t rm[5];
55 size_t i;
56 int n, ret = 0;
58 setlocale (LC_ALL, "de_DE.UTF-8");
59 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
61 n = regcomp (&re, tests[i].pattern, tests[i].flags);
62 if (n != 0)
64 char buf[500];
65 regerror (n, &re, buf, sizeof (buf));
66 printf ("regcomp %zd failed: %s\n", i, buf);
67 ret = 1;
68 continue;
71 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
73 printf ("regexec %zd failed\n", i);
74 ret = 1;
75 regfree (&re);
76 continue;
79 for (n = 0; n < tests[i].nmatch; ++n)
80 if (rm[n].rm_so != tests[i].rm[n].rm_so
81 || rm[n].rm_eo != tests[i].rm[n].rm_eo)
83 if (tests[i].rm[n].rm_so == -1 && tests[i].rm[n].rm_eo == -1)
84 break;
85 printf ("regexec match failure rm[%d] %d..%d\n",
86 n, rm[n].rm_so, rm[n].rm_eo);
87 ret = 1;
88 break;
91 regfree (&re);
94 return ret;