2009-08-23 22:33:40 +00:00
|
|
|
#include <regex.h>
|
2009-11-15 03:11:44 +00:00
|
|
|
#include <stdio.h>
|
2009-08-23 22:33:40 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
regex_t r;
|
|
|
|
int e = regcomp(&r, "xy\\{4,5,7\\}zabc", 0);
|
|
|
|
char buf[100];
|
|
|
|
regerror(e, &r, buf, sizeof (buf));
|
|
|
|
printf ("e = %d (%s)\n", e, buf);
|
2009-08-23 23:03:48 +00:00
|
|
|
int res = e != REG_BADBR;
|
|
|
|
|
|
|
|
e = regcomp(&r, "xy\\{4,5a\\}zabc", 0);
|
|
|
|
regerror(e, &r, buf, sizeof (buf));
|
|
|
|
printf ("e = %d (%s)\n", e, buf);
|
|
|
|
res |= e != REG_BADBR;
|
|
|
|
|
|
|
|
return res;
|
2009-08-23 22:33:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include "../test-skeleton.c"
|