aboutsummaryrefslogtreecommitdiff
path: root/posix/bug-regex29.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/bug-regex29.c')
-rw-r--r--posix/bug-regex29.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/posix/bug-regex29.c b/posix/bug-regex29.c
deleted file mode 100644
index cfc9f99dbc..0000000000
--- a/posix/bug-regex29.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#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"