Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 28 Aug 1999 22:40:55 +0000 (22:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 28 Aug 1999 22:40:55 +0000 (22:40 +0000)
* posix/regexbug1.c: Add one more similar case.

ChangeLog
posix/regexbug1.c

index 0f2ec69..e219836 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
        * malloc/malloc.c (ptmalloc_init): Don't use variables to set
        thresholds for SUID binaries.  [PR libc/1277]
 
+       * posix/regexbug1.c: Add one more similar case.
+
 1999-08-28  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
        * manual/install.texi (Running make install): Give examples for
index 8ab0bc0..5758046 100644 (file)
@@ -22,9 +22,29 @@ main (void)
 
   if (regexec (&re, "002", 2, ma, 0) != 0)
     {
-      error (0, 0, "\"0*[0-9][0-9]\" did not match \"002\"");
+      error (0, 0, "\"0*[0-9][0-9]\" does not match \"002\"");
       res = 1;
     }
+  puts ("Succesful match with \"0*[0-9][0-9]\"");
+
+  regfree (&re);
+
+  reerr = regcomp (&re, "[0a]*[0-9][0-9]", 0);
+  if (reerr != 0)
+    {
+      char buf[100];
+      regerror (reerr, &re, buf, sizeof buf);
+      error (EXIT_FAILURE, 0, buf);
+    }
+
+  if (regexec (&re, "002", 2, ma, 0) != 0)
+    {
+      error (0, 0, "\"[0a]*[0-9][0-9]\" does not match \"002\"");
+      res = 1;
+    }
+  puts ("Succesful match with \"[0a]*[0-9][0-9]\"");
+
+  regfree (&re);
 
   return res;
 }