about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-28 22:40:55 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-28 22:40:55 +0000
commitcd61d12cbc7952bb37f7d8aedc6bee5196b677b9 (patch)
treeaf92b8cf8dd4169f10ef6a4edecfbc29382dd9a8
parentd01d63190bf60f378406ea2846a35790a1d144f6 (diff)
downloadglibc-cd61d12cbc7952bb37f7d8aedc6bee5196b677b9.tar.gz
glibc-cd61d12cbc7952bb37f7d8aedc6bee5196b677b9.tar.xz
glibc-cd61d12cbc7952bb37f7d8aedc6bee5196b677b9.zip
Update.
	* posix/regexbug1.c: Add one more similar case.
-rw-r--r--ChangeLog2
-rw-r--r--posix/regexbug1.c22
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f2ec69bd2..e219836c2f 100644
--- 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
diff --git a/posix/regexbug1.c b/posix/regexbug1.c
index 8ab0bc0e6c..5758046ff8 100644
--- a/posix/regexbug1.c
+++ b/posix/regexbug1.c
@@ -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;
 }