build-many-glibcs.py: Add openrisc hard float glibc variant
[glibc.git] / posix / tst-boost.c
blobccef2ab5f4aeeef84733bfcc7bf4ee431df3e51a
1 /* Regular expression tests.
2 Copyright (C) 2003-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <sys/types.h>
20 #include <mcheck.h>
21 #include <regex.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
26 void
27 frob_escapes (char *src, int pattern)
29 char *dst;
31 for (dst = src; *src != '\0'; dst++, src++)
33 if (*src == '\\')
35 switch (src[1])
37 case 't':
38 src++;
39 *dst = '\t';
40 continue;
41 case 'n':
42 src++;
43 *dst = '\n';
44 continue;
45 case 'r':
46 src++;
47 *dst = '\r';
48 continue;
49 case '\\':
50 case '^':
51 case '{':
52 case '|':
53 case '}':
54 if (!pattern)
56 src++;
57 *dst = *src;
58 continue;
60 break;
63 if (src != dst)
64 *dst = *src;
66 *dst = '\0';
69 int
70 main (int argc, char **argv)
72 int ret = 0, n;
73 char *line = NULL;
74 size_t line_len = 0;
75 ssize_t len;
76 FILE *f;
77 char *pattern, *string;
78 int flags = REG_EXTENDED;
79 int eflags = 0;
80 regex_t re;
81 regmatch_t rm[20];
83 mtrace ();
85 if (argc < 2)
87 fprintf (stderr, "Missing test filename\n");
88 return 1;
91 f = fopen (argv[1], "r");
92 if (f == NULL)
94 fprintf (stderr, "Couldn't open %s\n", argv[1]);
95 return 1;
98 while ((len = getline (&line, &line_len, f)) > 0)
100 char *p, *q;
101 int i;
103 if (line[len - 1] == '\n')
104 line[--len] = '\0';
106 puts (line);
108 if (line[0] == ';')
109 continue;
111 if (line[0] == '\0')
112 continue;
114 if (line[0] == '-')
116 if (strstr (line, "REG_BASIC"))
117 flags = 0;
118 else
119 flags = REG_EXTENDED;
120 if (strstr (line, "REG_ICASE"))
121 flags |= REG_ICASE;
122 if (strstr (line, "REG_NEWLINE"))
123 flags |= REG_NEWLINE;
124 eflags = 0;
125 if (strstr (line, "REG_NOTBOL"))
126 eflags |= REG_NOTBOL;
127 if (strstr (line, "REG_NOTEOL"))
128 eflags |= REG_NOTEOL;
129 continue;
132 pattern = line + strspn (line, " \t");
133 if (*pattern == '\0')
134 continue;
135 p = pattern + strcspn (pattern, " \t");
136 if (*p == '\0')
137 continue;
138 *p++ = '\0';
140 string = p + strspn (p, " \t");
141 if (*string == '\0')
142 continue;
143 if (*string == '"')
145 string++;
146 p = strchr (string, '"');
147 if (p == NULL)
148 continue;
149 *p++ = '\0';
151 else
153 p = string + strcspn (string, " \t");
154 if (*string == '!')
155 string = NULL;
156 else if (*p == '\0')
157 continue;
158 else
159 *p++ = '\0';
162 frob_escapes (pattern, 1);
163 if (string != NULL)
164 frob_escapes (string, 0);
166 n = regcomp (&re, pattern, flags);
167 if (n != 0)
169 if (string != NULL)
171 char buf[500];
172 regerror (n, &re, buf, sizeof (buf));
173 printf ("FAIL regcomp unexpectedly failed: %s\n",
174 buf);
175 ret = 1;
177 continue;
179 else if (string == NULL)
181 regfree (&re);
182 puts ("FAIL regcomp unpexpectedly succeeded");
183 ret = 1;
184 continue;
187 if (regexec (&re, string, 20, rm, eflags))
189 for (i = 0; i < 20; ++i)
191 rm[i].rm_so = -1;
192 rm[i].rm_eo = -1;
196 regfree (&re);
198 for (i = 0; i < 20 && *p != '\0'; ++i)
200 int rm_so, rm_eo;
202 rm_so = strtol (p, &q, 10);
203 if (p == q)
204 break;
205 p = q;
207 rm_eo = strtol (p, &q, 10);
208 if (p == q)
209 break;
210 p = q;
212 if (rm[i].rm_so != rm_so || rm[i].rm_eo != rm_eo)
214 printf ("FAIL rm[%d] %d..%d != expected %d..%d\n",
215 i, rm[i].rm_so, rm[i].rm_eo, rm_so, rm_eo);
216 ret = 1;
217 break;
222 free (line);
223 fclose (f);
224 return ret;