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.
|
---|
5 |
|
---|
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.
|
---|
10 |
|
---|
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.
|
---|
15 |
|
---|
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. */
|
---|
20 |
|
---|
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>
|
---|
27 |
|
---|
28 | /* Tests supposed to match. */
|
---|
29 | struct
|
---|
30 | {
|
---|
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 } } },
|
---|
48 | };
|
---|
49 |
|
---|
50 | int
|
---|
51 | main (void)
|
---|
52 | {
|
---|
53 | regex_t re;
|
---|
54 | regmatch_t rm[5];
|
---|
55 | size_t i;
|
---|
56 | int n, ret = 0;
|
---|
57 |
|
---|
58 | setlocale (LC_ALL, "de_DE.UTF-8");
|
---|
59 | for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
|
---|
60 | {
|
---|
61 | n = regcomp (&re, tests[i].pattern, tests[i].flags);
|
---|
62 | if (n != 0)
|
---|
63 | {
|
---|
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;
|
---|
69 | }
|
---|
70 |
|
---|
71 | if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
|
---|
72 | {
|
---|
73 | printf ("regexec %zd failed\n", i);
|
---|
74 | ret = 1;
|
---|
75 | regfree (&re);
|
---|
76 | continue;
|
---|
77 | }
|
---|
78 |
|
---|
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)
|
---|
82 | {
|
---|
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;
|
---|
89 | }
|
---|
90 |
|
---|
91 | regfree (&re);
|
---|
92 | }
|
---|
93 |
|
---|
94 | return ret;
|
---|
95 | }
|
---|