summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-08-23 16:03:48 -0700
committerPetr Baudis <pasky@suse.cz>2009-09-18 17:41:15 +0200
commit3262a69480e933fd7e7ae8cf46eac258fe66c6a9 (patch)
tree556fa46ecd08986ec6de83144284e117aac2558d
parentc4ae002d9d590d24cda7bb3cd4e1a80e2227aca1 (diff)
Extend last test case.
(cherry picked from commit a1ed6c284a2ad191f13c640d34c2563b5c366267)
-rw-r--r--posix/bug-regex29.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/posix/bug-regex29.c b/posix/bug-regex29.c
index 70a6c94cc6..bd796c6c2a 100644
--- a/posix/bug-regex29.c
+++ b/posix/bug-regex29.c
@@ -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 ()