diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-01-14 08:06:22 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-01-14 08:06:22 -0500 |
commit | 794c3ad3a405697e2663b00f616e319383b9bb7d (patch) | |
tree | eabcf25257fdcc1e98cc3a9bf6a5333cba3dfb3c /posix/tst-fnmatch.input | |
parent | 68dc949774cb651d53541df4abdc60327f7e096b (diff) | |
download | glibc-794c3ad3a405697e2663b00f616e319383b9bb7d.tar.gz glibc-794c3ad3a405697e2663b00f616e319383b9bb7d.tar.xz glibc-794c3ad3a405697e2663b00f616e319383b9bb7d.zip |
FIx handling of unterminated [ expression in fnmatch.
Diffstat (limited to 'posix/tst-fnmatch.input')
-rw-r--r-- | posix/tst-fnmatch.input | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/posix/tst-fnmatch.input b/posix/tst-fnmatch.input index 9061d19945..a799097768 100644 --- a/posix/tst-fnmatch.input +++ b/posix/tst-fnmatch.input @@ -1,5 +1,5 @@ # Tests for fnmatch. -# Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2004, 2011 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributes by Ulrich Drepper <drepper@redhat.com>. # @@ -65,10 +65,10 @@ C "a" "[!abc]" NOMATCH C "]" "[][abc]" 0 C "abc]" "[][abc]" NOMATCH C "[]abc" "[][]abc" NOMATCH -C "]" "[!]]" NOMATCH +C "]" "[!]]" NOMATCH C "aa]" "[!]a]" NOMATCH -C "]" "[!a]" 0 -C "]]" "[!a]]" 0 +C "]" "[!a]" 0 +C "]]" "[!a]]" 0 # B.6 012(C) C "a" "[[.a.]]" 0 @@ -340,7 +340,8 @@ C "/.a/.b" "/*b" NOMATCH PATHNAME # B.6 031(C) C "/$" "\\/\\$" 0 C "/[" "\\/\\[" 0 -C "/[" "\\/[" NOMATCH +C "/[" "\\/[" 0 +C "/[]" "\\/\\[]" 0 # B.6 032(C) C "/$" "\\/\\$" NOMATCH NOESCAPE |