diff options
| author | 2008-08-17 15:40:29 +0000 | |
|---|---|---|
| committer | 2008-08-17 15:40:29 +0000 | |
| commit | e9b7d71c557e2bafedaf4cd2993242e3c17f6f8e (patch) | |
| tree | 12d258585da0623043fd53a3fdfe82112f4e82d9 /src/testsuite.cpp | |
| parent | Fix missing bounds checks in wildcard.cpp causing crash in bug #590 and related (diff) | |
| download | inspircd++-e9b7d71c557e2bafedaf4cd2993242e3c17f6f8e.tar.gz inspircd++-e9b7d71c557e2bafedaf4cd2993242e3c17f6f8e.tar.bz2 inspircd++-e9b7d71c557e2bafedaf4cd2993242e3c17f6f8e.zip | |
Another edge case suggested by peavey (passes)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10148 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/testsuite.cpp')
| -rw-r--r-- | src/testsuite.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp index ee3346d9d..9ab30ff2d 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -118,6 +118,7 @@ bool TestSuite::DoWildTests() WCTEST("foobar", "foo??r"); WCTEST("foobar.test", "fo?bar.*t"); WCTEST("foobar", "foobar"); + WCTEST("foobar", "foo***bar"); WCTESTNOT("foobar", "bazqux"); WCTESTNOT("foobar", "*qux"); |
