summaryrefslogtreecommitdiff
path: root/posix/bug-regex15.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-12-13 21:32:03 +0000
committerRoland McGrath <roland@gnu.org>2002-12-13 21:32:03 +0000
commitafc58fa87c622092e24bd35b1aac389a45400647 (patch)
tree24b90576212d2eaa1330f0fe54fa3129c702b9ef /posix/bug-regex15.c
parentd94e16c4feff9e16391fe34f11f8e7e0de02f891 (diff)
2002-12-13 Roland McGrath <roland@redhat.com>
* posix/bug-regex15.c: New file. * posix/Makefile (tests): Add it.
Diffstat (limited to 'posix/bug-regex15.c')
-rw-r--r--posix/bug-regex15.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/posix/bug-regex15.c b/posix/bug-regex15.c
new file mode 100644
index 0000000000..8f6d3cc00d
--- /dev/null
+++ b/posix/bug-regex15.c
@@ -0,0 +1,32 @@
+/* Test for memory/CPU leak in regcomp. */
+
+#include <error.h>
+#include <sys/types.h>
+#include <regex.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#define TEST_DATA_LIMIT (32 << 20)
+
+static int do_test (void);
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
+
+static int
+do_test (void)
+{
+ regex_t re;
+ int reerr;
+
+ reerr = regcomp (&re, "^6?3?[25]?5?[14]*[25]*[69]*+[58]*87?4?$",
+ REG_EXTENDED | REG_NOSUB);
+ if (reerr != 0)
+ {
+ char buf[100];
+ regerror (reerr, &re, buf, sizeof buf);
+ printf ("regerror %s\n", buf);
+ return 1;
+ }
+
+ return 0;
+}