mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
c90a2db6e0
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.
32 lines
586 B
C
32 lines
586 B
C
#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;
|
|
}
|