You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2011/05/19 19:07:19 UTC

svn commit: r1125000 - /apr/apr/branches/1.5.x/test/testfnmatch.c

Author: wrowe
Date: Thu May 19 17:07:19 2011
New Revision: 1125000

URL: http://svn.apache.org/viewvc?rev=1125000&view=rev
Log:
Document another unexpected failure, already resolved

Backports: r1124983

Modified:
    apr/apr/branches/1.5.x/test/testfnmatch.c

Modified: apr/apr/branches/1.5.x/test/testfnmatch.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/test/testfnmatch.c?rev=1125000&r1=1124999&r2=1125000&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/test/testfnmatch.c (original)
+++ apr/apr/branches/1.5.x/test/testfnmatch.c Thu May 19 17:07:19 2011
@@ -75,6 +75,7 @@ static struct pattern_s {
     {"tes*", "test",                    SUCCEEDS},
     {"test*", "test",                   SUCCEEDS},
 
+    {".[\\-\\t]", ".t",                 SUCCEEDS},
     {"test*?*[a-z]*", "testgoop",       SUCCEEDS},
     {"te[^x]t", "test",                 SUCCEEDS},
     {"te[^abc]t", "test",               SUCCEEDS},