mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* posix/regexbug1.c: Add one more similar case.
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user