* posix/testfnm.c: Add more test cases.
This commit is contained in:
Ulrich Drepper 1999-04-27 09:15:56 +00:00
parent 10bb450d11
commit b6a7609d56
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,8 @@
* posix/fnmatch.c (internal_fnmatch): Correctly reset string
pointer in case of an invalid [[: expression.
* posix/testfnm.c: Add more test cases.
1999-04-27 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): If SIGKILL present in _hurdsig_traced

View File

@ -46,6 +46,7 @@ struct {
{ "a./b", "*[.]/b", FNM_PATHNAME|FNM_PERIOD, 0 },
{ "a/b", "*[[:alpha:]]/*[[:alnum:]]", FNM_PATHNAME, 0 },
{ "a/b", "*[![:digit:]]*/[![:d-d]", FNM_PATHNAME, 0 },
{ "a/[", "*[![:digit:]]*/[[:d-d]", FNM_PATHNAME, 0 },
{ "a/[", "*[![:digit:]]*/[![:d-d]", FNM_PATHNAME, FNM_NOMATCH },
};