1 /* POSIX regex testsuite from IEEE 2003.2.
2 Copyright (C) 1998, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
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
21 #include <sys/types.h>
26 /* Data structure to describe the tests. */
36 #include "ptestcases.h"
41 main (int argc
, char *argv
[])
46 for (cnt
= 0; cnt
< sizeof (tests
) / sizeof (tests
[0]); ++cnt
)
47 if (tests
[cnt
].str
== NULL
)
49 printf ("\n%s\n%.*s\n", tests
[cnt
].reg
,
50 (int) strlen (tests
[cnt
].reg
),
51 "-----------------------------------------------------");
53 else if (tests
[cnt
].reg
== NULL
)
54 printf ("!!! %s\n", tests
[cnt
].str
);
61 printf ("regexp: \"%s\", string: \"%s\" -> ", tests
[cnt
].reg
,
64 /* Compile the expression. */
65 err
= regcomp (&re
, tests
[cnt
].reg
, tests
[cnt
].options
);
68 if (tests
[cnt
].start
== -2)
69 puts ("compiling failed, OK");
73 regerror (err
, &re
, buf
, sizeof (buf
));
74 printf ("FAIL: %s\n", buf
);
80 else if (tests
[cnt
].start
== -2)
82 puts ("compiling suceeds, FAIL");
87 /* Run the actual test. */
88 err
= regexec (&re
, tests
[cnt
].str
, 20, match
, 0);
92 if (tests
[cnt
].start
== -1)
93 puts ("no match, OK");
96 puts ("no match, FAIL");
102 if (match
[0].rm_so
== 0 && tests
[cnt
].start
== 0
103 && match
[0].rm_eo
== 0 && tests
[cnt
].end
== 0)
105 else if (match
[0].rm_so
+ 1 == tests
[cnt
].start
106 && match
[0].rm_eo
== tests
[cnt
].end
)
110 printf ("wrong match (%d to %d): FAIL\n",
111 match
[0].rm_so
, match
[0].rm_eo
);
116 /* Free all resources. */
120 printf ("\n%Zu tests, %d errors\n", cnt
, errors
);