Skip to content
Snippets Groups Projects
Commit f881dcf7 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

kernel32/tests: Test LocaleNameToLCID with bad name.

parent 3f1dbaf3
No related branches found
No related tags found
No related merge requests found
......@@ -1789,7 +1789,7 @@ static INT LCMapStringEx_wrapper(DWORD flags, LPCWSTR src, INT srclen, LPWSTR ds
static void test_LCMapStringEx(void)
{
int ret;
WCHAR buf[256], badname[] = {'w', 'i', 'n', 'e', 't', 'e', 's', 't', 0};
WCHAR buf[256];
if (!pLCMapStringEx)
{
......@@ -1800,7 +1800,7 @@ static void test_LCMapStringEx(void)
trace("testing LCMapStringEx\n");
SetLastError(0xdeadbeef);
ret = pLCMapStringEx(badname, LCMAP_LOWERCASE,
ret = pLCMapStringEx(fooW, LCMAP_LOWERCASE,
upper_case, -1, buf, sizeof(buf)/sizeof(WCHAR), NULL, NULL, 0);
todo_wine {
ok(!ret, "LCMapStringEx should fail with bad locale name\n");
......@@ -1889,6 +1889,10 @@ static void test_LocaleNameToLCID(void)
ok(ret > 0, "Expected ret > 0, got %d, error %d\n", ret, GetLastError());
trace("%08x, %s\n", lcid, wine_dbgstr_w(buffer));
/* bad name */
lcid = pLocaleNameToLCID(fooW, 0);
todo_wine ok(lcid == 0, "got 0x%04x\n", lcid);
/* english neutral name */
lcid = pLocaleNameToLCID(enW, 0);
ok(lcid == MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), SORT_DEFAULT) ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment