uxtheme/tests: Use HRESULT_FROM_WIN32 to check the error codes, not LOWORD.
This commit is contained in:
parent
9a7dc15979
commit
0feda920ba
|
@ -382,7 +382,7 @@ static void test_GetCurrentThemeName(void)
|
||||||
hRes = pGetCurrentThemeName(currentTheme, 2, NULL, 0, NULL, 0);
|
hRes = pGetCurrentThemeName(currentTheme, 2, NULL, 0, NULL, 0);
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08x\n", hRes);
|
ok(hRes == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "Expected HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
|
@ -396,7 +396,7 @@ static void test_GetCurrentThemeName(void)
|
||||||
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
currentSize, sizeof(currentSize) / sizeof(WCHAR));
|
||||||
if (bThemeActive)
|
if (bThemeActive)
|
||||||
todo_wine
|
todo_wine
|
||||||
ok( LOWORD(hRes) == ERROR_INSUFFICIENT_BUFFER, "Expected 0x8007007A, got 0x%08x\n", hRes);
|
ok(hRes == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "Expected HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), got 0x%08x\n", hRes);
|
||||||
else
|
else
|
||||||
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
ok( hRes == E_PROP_ID_UNSUPPORTED, "Expected E_PROP_ID_UNSUPPORTED, got 0x%08x\n", hRes);
|
||||||
ok( GetLastError() == 0xdeadbeef,
|
ok( GetLastError() == 0xdeadbeef,
|
||||||
|
|
Loading…
Reference in New Issue