diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-22 22:39:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-22 22:39:16 +0000 |
commit | c90a2db6e0c4661091a9c5b1454a9beffc611e9e (patch) | |
tree | 22fd71bef937c16b2468c25649c71b77940908a4 /posix | |
parent | 60c53a1219b9f0ee9c1787f2b160b362e7f94457 (diff) | |
download | glibc-c90a2db6e0c4661091a9c5b1454a9beffc611e9e.zip glibc-c90a2db6e0c4661091a9c5b1454a9beffc611e9e.tar.gz glibc-c90a2db6e0c4661091a9c5b1454a9beffc611e9e.tar.bz2 |
Update.
1999-08-22 Ulrich Drepper <drepper@cygnus.com>
* iconv/gconv_int.h (GCONV_AVOID_NOCONV): New definition.
(__gconv_find_transform): Update prototype.
(__gconv_open): Likewise.
* iconv/gconv_open.c: Take extra parameter and pass it to
__gconv_find_transform.
* iconv/gconv_db.c (__gconv_find_transform): Take extra parameter with
flags. If GCONV_AVOID_NOCONV flag is set don't return copying
transformation.
* iconv/iconv_open.c: Pass extra parameter to __gconv_open.
* wcsmbs/wcsmbsload.c: Likewise.
* intl/dcgettext.c (_nl_find_msg): Rewrite to use gconv instead of
iconv for glibc.
* intl/gettextP.h: Likewise.
* intl/loadmsgcat.c: Likewise.
* posix/regexbug1.c: New file.
* posix/Makefile (tests): Add regexbug1.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/Makefile | 4 | ||||
-rw-r--r-- | posix/regexbug1.c | 31 |
2 files changed, 33 insertions, 2 deletions
diff --git a/posix/Makefile b/posix/Makefile index 2790534..f8e72b6 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -57,7 +57,7 @@ include ../Makeconfig aux := init-posix environ tests := tstgetopt testfnm runtests runptests \ - tst-preadwrite test-vfork + tst-preadwrite test-vfork regexbug1 ifeq (yes,$(build-shared)) test-srcs := globtest tests += wordexp-test @@ -91,7 +91,7 @@ do-wordexp-test: $(objpfx)wordexp-test endif endif -CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes +CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes -DDEBUG CFLAGS-getaddrinfo.c = -DRESOLVER $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib) diff --git a/posix/regexbug1.c b/posix/regexbug1.c new file mode 100644 index 0000000..6f7f995 --- /dev/null +++ b/posix/regexbug1.c @@ -0,0 +1,31 @@ +#include <error.h> +#include <sys/types.h> +#include <regex.h> +#include <stdlib.h> + +int +main (void) +{ + regex_t re; + regmatch_t ma[2]; + int reerr; + int res = 0; + + re_set_syntax (RE_DEBUG); + reerr = regcomp (&re, "0*[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, "\"0*[0-9][0-9]\" did not match \"002\""); + /* Comment the following line out until the bug is fixed. */ + //res = 1; + } + + return 0; +} |