summaryrefslogtreecommitdiff
path: root/test/testfnmatch.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2018-08-30 21:09:43 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2018-08-30 21:09:43 +0000
commit6aa6b1c6e2c340e5bfe1e2b58951a3ccb03d77bd (patch)
tree69f86a19a62e2d32f569cd22f4f07c22aaef83ee /test/testfnmatch.c
parent232cd26685361833b19d0dbe5d567abe02e005a7 (diff)
downloadapr-6aa6b1c6e2c340e5bfe1e2b58951a3ccb03d77bd.tar.gz
Revert 1839699, this contained unintended, additional noise. Re-correcting.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1839700 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testfnmatch.c')
-rw-r--r--test/testfnmatch.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/testfnmatch.c b/test/testfnmatch.c
index d52f5a816..1d1c0315d 100644
--- a/test/testfnmatch.c
+++ b/test/testfnmatch.c
@@ -135,19 +135,6 @@ static struct pattern_s {
{"test/*", "test/.this", FAILS_IF(APR_FNM_PERIOD | APR_FNM_PATHNAME)},
{"test/?this", "test/.this", FAILS_IF(APR_FNM_PERIOD | APR_FNM_PATHNAME)},
{"test/[.]this", "test/.this", FAILS_IF(APR_FNM_PERIOD | APR_FNM_PATHNAME)},
-
- {"foo[[]bar", "foo[bar", SUCCEEDS},
- {"foo]bar", "foo]bar", SUCCEEDS},
- {"foo[[]]bar", "foo[]bar", SUCCEEDS},
-
- {"foo[]bar", "foobar", FAILS},
- {"foo[]]bar", "foo]bar", FAILS},
- {"foo[!]bar", "foobar", SUCCEEDS},
- {"foo[^]bar", "foobar", SUCCEEDS},
- {"foo[!]]bar", "foo]bar", SUCCEEDS},
- {"foo[^]]bar", "foo]bar", SUCCEEDS},
- {"foo[!]]bar", "fooXbar", FAILS},
- {"foo[^]]bar", "fooXbar", FAILS},
{NULL, NULL, 0}
};