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 18:18:19 UTC

svn commit: r1124983 - /apr/apr/trunk/test/testfnmatch.c

Author: wrowe
Date: Thu May 19 16:18:19 2011
New Revision: 1124983

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

Modified:
    apr/apr/trunk/test/testfnmatch.c

Modified: apr/apr/trunk/test/testfnmatch.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testfnmatch.c?rev=1124983&r1=1124982&r2=1124983&view=diff
==============================================================================
--- apr/apr/trunk/test/testfnmatch.c (original)
+++ apr/apr/trunk/test/testfnmatch.c Thu May 19 16:18: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},