[KMTESTS]

- Add a few more tests for FindFirstFile
- Silence kmtest debugging

svn path=/trunk/; revision=58819
This commit is contained in:
Thomas Faber 2013-04-21 20:47:52 +00:00
parent 4e5c5772f1
commit 76b9a203f2
3 changed files with 26 additions and 2 deletions

View file

@ -61,6 +61,30 @@ START_TEST(FindFile)
{ L"?a?", L">a>" },
{ L"a?a?a", L"a>a>a" },
{ L"?.?", L">\">" },
{ L"a?.?", L"a>\">" },
{ L"?.?a", L">\">a" },
{ L"a?.?a", L"a>\">a" },
{ L"?.??.?", L">\">>\">" },
{ L"?.?a?.?", L">\">a>\">" },
{ L"a?.?a?.?a", L"a>\">a>\">a" },
{ L".?", L"\">" },
{ L"a.?", L"a\">" },
{ L".?a", L"\">a" },
{ L"a.?a", L"a\">a" },
{ L".?.?", L"\">\">" },
{ L".?a.?", L"\">a\">" },
{ L"a.?a.?a", L"a\">a\">a" },
{ L"?.", L">" },
{ L"a?.", L"a>" },
{ L"?.a", L">.a" },
{ L"a?.a", L"a>.a" },
{ L"?.?.", L">\">" },
{ L"?.a?.", L">.a>" },
{ L"a?.a?.a", L"a>.a>.a" },
{ L"f*.", L"f<" },
{ L"f.*", L"f\"*" },
{ L"f*.*", L"f<\"*" },

View file

@ -12,7 +12,7 @@
#include <limits.h>
#include <pseh/pseh2.h>
//#define NDEBUG
#define NDEBUG
#include <debug.h>
#include <kmt_public.h>

View file

@ -12,7 +12,7 @@
#define KMT_DEFINE_TEST_FUNCTIONS
#include <kmt_test.h>
//#define NDEBUG
#define NDEBUG
#include <debug.h>
#include <kmt_public.h>