ntdll/tests: Add a few additional tests for wcsrchr.

This commit is contained in:
Andrew Nguyen 2010-01-13 06:45:22 -06:00 committed by Alexandre Julliard
parent dca1bd8633
commit d7557a1926
1 changed files with 9 additions and 3 deletions

View File

@ -1126,9 +1126,15 @@ static void test_wcschr(void)
} }
static void test_wcsrchr(void) static void test_wcsrchr(void)
{ {
static const WCHAR testing[] = {'T','e','s','t','i','n','g',0}; static const WCHAR teststringW[] = {'a','b','r','a','c','a','d','a','b','r','a',0};
ok (p_wcsrchr(testing,0)!=NULL, "wcsrchr Not finding terminating character\n");
ok(p_wcsrchr(teststringW, 'a') == teststringW + 10,
"wcsrchr should have returned a pointer to the last 'a' character\n");
ok(p_wcsrchr(teststringW, 0) == teststringW + 11,
"wcsrchr should have returned a pointer to the null terminator\n");
ok(p_wcsrchr(teststringW, 'x') == NULL,
"wcsrchr should have returned NULL\n");
} }
START_TEST(string) START_TEST(string)