summaryrefslogtreecommitdiff
path: root/posix/bug-regex29.c
blob: bd796c6c2a239b59280f64041e6842a45c56e912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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);
  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;
}

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