1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Add test case for last fixed regex bug.

This commit is contained in:
Ulrich Drepper
2009-08-23 15:33:40 -07:00
parent 52db8039f5
commit 8a7cea0199
3 changed files with 18 additions and 0 deletions

15
posix/bug-regex29.c Normal file
View File

@ -0,0 +1,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"