kernel32/tests: Some todo tests for CompareStringA and lstrcmpi.

This commit is contained in:
Nikolay Sivov 2009-01-14 16:28:58 +03:00 committed by Alexandre Julliard
parent 1f5b2f7e0c
commit 4e12b8efc8
1 changed files with 6 additions and 0 deletions

View File

@ -1110,6 +1110,12 @@ static void test_CompareStringA(void)
ret = CompareStringA(lcid, 0, "\2", 2, "\1", 2);
todo_wine ok(ret != 2, "\\2 vs \\1 expected unequal\n");
ret = CompareStringA(lcid, NORM_IGNORECASE | LOCALE_USE_CP_ACP, "#", -1, ".", -1);
todo_wine ok(ret == CSTR_LESS_THAN, "\"#\" vs \".\" expected CSTR_LESS_THAN, got %d\n", ret);
ret = lstrcmpi("#", ".");
todo_wine ok(ret == -1, "\"#\" vs \".\" expected -1, got %d\n", ret);
}
static void test_LCMapStringA(void)