From 8a7cea019947a68e641e9201813fe01ba35cfd1a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 23 Aug 2009 15:33:40 -0700 Subject: Add test case for last fixed regex bug. --- posix/bug-regex29.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 posix/bug-regex29.c (limited to 'posix/bug-regex29.c') diff --git a/posix/bug-regex29.c b/posix/bug-regex29.c new file mode 100644 index 0000000..70a6c94 --- /dev/null +++ b/posix/bug-regex29.c @@ -0,0 +1,15 @@ +#include + +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" -- cgit v1.1