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