1 /* 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., 51 Franklin Street, Fifth Floor, Boston, MA
23 #include <sys/types.h>
31 /* Tests supposed to not match. */
38 { "^<\\([^~]*\\)\\([^~]\\)[^~]*~\\1\\(.\\).*|=.*\\3.*\\2",
39 "<,.8~2,~so-|=-~.0,123456789<><", REG_NOSUB
, 0 },
40 /* In ERE, all carets must be treated as anchors. */
41 { "a^b", "a^b", REG_EXTENDED
, 0 }
56 for (i
= 0; i
< sizeof (tests
) / sizeof (tests
[0]); ++i
)
58 n
= regcomp (&re
, tests
[i
].pattern
, tests
[i
].flags
);
62 regerror (n
, &re
, buf
, sizeof (buf
));
63 printf ("regcomp %lu failed: %s\n", i
, buf
);
68 if (! regexec (&re
, tests
[i
].string
, tests
[i
].nmatch
,
69 tests
[i
].nmatch
? rm
: NULL
, 0))
71 printf ("regexec %lu incorrectly matched\n", i
);