Extend last test case.

This commit is contained in:
Ulrich Drepper 2009-08-23 16:03:48 -07:00
parent 8a7cea0199
commit a1ed6c284a

View file

@ -8,7 +8,14 @@ do_test (void)
char buf[100];
regerror(e, &r, buf, sizeof (buf));
printf ("e = %d (%s)\n", e, buf);
return e != REG_BADBR;
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 ()