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:
15
posix/bug-regex29.c
Normal file
15
posix/bug-regex29.c
Normal 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"
|
Reference in New Issue
Block a user