source: branches/libc-0.6/src/libctests/glibc/posix/bug-regex18.c

Last change on this file was 2240, checked in by bird, 20 years ago

Replaced BSD regex with the new GLIBC implementation.

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
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. */
29struct
30{
31 const char *pattern;
32 const char *string;
33 int flags, nmatch;
34 regmatch_t rm[5];
35} tests[] = {
36 /* \xc4\xb0 LATIN CAPITAL LETTER I WITH DOT ABOVE
37 \xc4\xb1 LATIN SMALL LETTER DOTLESS I
38 \xe2\x80\x94 EM DASH */
39 { "\xc4\xb0I*\xc4\xb1$", "aBi\xc4\xb1\xc4\xb1I", REG_ICASE, 2,
40 { { 2, 8 }, { -1, -1 } } },
41 { "[\xc4\xb0x]I*\xc4\xb1$", "aBi\xc4\xb1\xc4\xb1I", REG_ICASE, 2,
42 { { 2, 8 }, { -1, -1 } } },
43 { "[^x]I*\xc4\xb1$", "aBi\xc4\xb1\xc4\xb1I", REG_ICASE, 2,
44 { { 2, 8 }, { -1, -1 } } },
45 { "([[:alpha:]]i[[:xdigit:]])(\xc4\xb1*)(\xc4\xb0{2})",
46 "\xe2\x80\x94\xc4\xb1\xc4\xb0""fIi\xc4\xb0ii", REG_ICASE | REG_EXTENDED,
47 4, { { 3, 12 }, { 3, 8 }, { 8, 9 }, { 9, 12 } } },
48 { "\xc4\xb1i(i)*()(\\s\xc4\xb0|\\SI)", "SIi\xc4\xb0\xc4\xb0 is",
49 REG_ICASE | REG_EXTENDED, 4, { { 1, 9 }, { 5, 7 }, { 7, 7 }, { 7, 9 } } },
50 { "\xc4\xb1i(i)*()(\\s\xc4\xb0|\\SI)", "\xc4\xb1\xc4\xb0\xc4\xb0iJ\xc4\xb1",
51 REG_ICASE | REG_EXTENDED, 4,
52 { { 0, 10 }, { 6, 7 }, { 7, 7 }, { 7, 10 } } },
53};
54
55int
56main (void)
57{
58 regex_t re;
59 regmatch_t rm[5];
60 size_t i;
61 int n, ret = 0;
62
63 if (!setlocale (LC_ALL, "tr_TR.UTF-8"))
64 {
65 printf ("bug-regex18: setlocale for tr_TR.UTF-8 failed, SKIPPING the test.\n");
66 return 0;
67 }
68
69 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
70 {
71 n = regcomp (&re, tests[i].pattern, tests[i].flags);
72 if (n != 0)
73 {
74 char buf[500];
75 regerror (n, &re, buf, sizeof (buf));
76 printf ("regcomp %zd failed: %s\n", i, buf);
77 ret = 1;
78 continue;
79 }
80
81 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
82 {
83 printf ("regexec %zd failed\n", i);
84 ret = 1;
85 regfree (&re);
86 continue;
87 }
88
89 for (n = 0; n < tests[i].nmatch; ++n)
90 if (rm[n].rm_so != tests[i].rm[n].rm_so
91 || rm[n].rm_eo != tests[i].rm[n].rm_eo)
92 {
93 if (tests[i].rm[n].rm_so == -1 && tests[i].rm[n].rm_eo == -1)
94 break;
95 printf ("regexec match failure rm[%d] %d..%d\n",
96 n, rm[n].rm_so, rm[n].rm_eo);
97 ret = 1;
98 break;
99 }
100
101 regfree (&re);
102 }
103
104 return ret;
105}
Note: See TracBrowser for help on using the repository browser.