summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2009-08-26 12:04:34 +0200
committerAndreas Schwab <schwab@redhat.com>2009-08-26 12:04:34 +0200
commit19fe1be84e6f775e3a7f4cd03b093338d6a317bf (patch)
tree1d28740af54a3d9194373f7f561baf579c3a8f44 /posix
parentbc9dd948ffc9cf1992d3e77e753789ab897e3dc6 (diff)
parent2df4be8c3545f6158e468660a73f794573fb6f07 (diff)
Merge commit 'origin/master' into fedora/master
Diffstat (limited to 'posix')
-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 ()