about summary refs log tree commit diff
path: root/REORG.TODO/posix/bug-regex29.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/posix/bug-regex29.c')
-rw-r--r--REORG.TODO/posix/bug-regex29.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/REORG.TODO/posix/bug-regex29.c b/REORG.TODO/posix/bug-regex29.c
new file mode 100644
index 0000000000..cfc9f99dbc
--- /dev/null
+++ b/REORG.TODO/posix/bug-regex29.c
@@ -0,0 +1,23 @@
+#include <regex.h>
+#include <stdio.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);
+  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 ()
+#include "../test-skeleton.c"