glibc/posix/regexbug1.c
Ulrich Drepper a286028236 Update.
1999-08-23  Ulrich Drepper  <drepper@cygnus.com>

	* posix/regexbug1.c: Make it an error if the test fails.

1999-08-23  Andreas Schwab  <schwab@suse.de>
	    Ulrich Drepper  <drepper@cygnus.com>

	* posix/regex.c (re_match_2_internal): Correct check for charset
	after exactn in loop.
1999-08-23 16:54:35 +00:00

30 lines
518 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\"");
res = 1;
}
return res;
}