summaryrefslogtreecommitdiff
path: root/posix/bug-regex29.c
blob: 70a6c94cc60c94116f9972de7943dca520c1b287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <regex.h>

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);
  return e != REG_BADBR;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"