Commit 26f753ae authored by Joris Huizer's avatar Joris Huizer Committed by Alexandre Julliard

user32/tests: Don't test function directly when reporting GetLastError().

parent fb296d12
...@@ -1571,6 +1571,7 @@ static void test_dde_aw_transaction( BOOL client_unicode, BOOL server_unicode ) ...@@ -1571,6 +1571,7 @@ static void test_dde_aw_transaction( BOOL client_unicode, BOOL server_unicode )
CONVINFO info; CONVINFO info;
HDDEDATA hdata; HDDEDATA hdata;
BOOL conv_unicode = client_unicode; BOOL conv_unicode = client_unicode;
BOOL got;
static char test_cmd[] = "test dde command"; static char test_cmd[] = "test dde command";
if (!(hwnd_server = create_dde_server( server_unicode ))) return; if (!(hwnd_server = create_dde_server( server_unicode ))) return;
...@@ -1709,7 +1710,8 @@ todo_wine { ...@@ -1709,7 +1710,8 @@ todo_wine {
ok(err == DMLERR_NOTPROCESSED, "DdeClientTransaction returned error %x\n", err); ok(err == DMLERR_NOTPROCESSED, "DdeClientTransaction returned error %x\n", err);
} }
ok(DdeDisconnect(hconv), "DdeDisconnect error %x\n", DdeGetLastError(dde_inst)); got = DdeDisconnect(hconv);
ok(got, "DdeDisconnect error %x\n", DdeGetLastError(dde_inst));
info.cb = sizeof(info); info.cb = sizeof(info);
ret = DdeQueryConvInfo(hconv, QID_SYNC, &info); ret = DdeQueryConvInfo(hconv, QID_SYNC, &info);
...@@ -1719,7 +1721,8 @@ todo_wine { ...@@ -1719,7 +1721,8 @@ todo_wine {
ok(err == DMLERR_INVALIDPARAMETER, "wrong dde error %x\n", err); ok(err == DMLERR_INVALIDPARAMETER, "wrong dde error %x\n", err);
} }
ok(DdeFreeStringHandle(dde_inst, hsz_server), "DdeFreeStringHandle error %x\n", DdeGetLastError(dde_inst)); got = DdeFreeStringHandle(dde_inst, hsz_server);
ok(got, "DdeFreeStringHandle error %x\n", DdeGetLastError(dde_inst));
/* This call hangs on win2k SP4 and XP SP1. /* This call hangs on win2k SP4 and XP SP1.
DdeUninitialize(dde_inst);*/ DdeUninitialize(dde_inst);*/
......
...@@ -660,6 +660,7 @@ static void test_menu_bmp_and_string(void) ...@@ -660,6 +660,7 @@ static void test_menu_bmp_and_string(void)
MENUINFO mi= {sizeof(MENUINFO)}; MENUINFO mi= {sizeof(MENUINFO)};
MENUITEMINFOA mii= {sizeof(MENUITEMINFOA)}; MENUITEMINFOA mii= {sizeof(MENUITEMINFOA)};
int count, szidx, txtidx, bmpidx, hassub, mnuopt, ispop; int count, szidx, txtidx, bmpidx, hassub, mnuopt, ispop;
BOOL got;
if( !pGetMenuInfo) if( !pGetMenuInfo)
{ {
...@@ -681,12 +682,14 @@ static void test_menu_bmp_and_string(void) ...@@ -681,12 +682,14 @@ static void test_menu_bmp_and_string(void)
ok( hsysmenu != NULL, "GetSystemMenu failed with error %d\n", GetLastError()); ok( hsysmenu != NULL, "GetSystemMenu failed with error %d\n", GetLastError());
mi.fMask = MIM_STYLE; mi.fMask = MIM_STYLE;
mi.dwStyle = 0; mi.dwStyle = 0;
ok( pGetMenuInfo( hsysmenu, &mi), "GetMenuInfo failed gle=%d\n", GetLastError()); got = pGetMenuInfo( hsysmenu, &mi);
ok( got, "GetMenuInfo failed gle=%d\n", GetLastError());
ok( MNS_CHECKORBMP == mi.dwStyle, "System Menu Style is %08x, without the bit %08x\n", ok( MNS_CHECKORBMP == mi.dwStyle, "System Menu Style is %08x, without the bit %08x\n",
mi.dwStyle, MNS_CHECKORBMP); mi.dwStyle, MNS_CHECKORBMP);
mii.fMask = MIIM_BITMAP; mii.fMask = MIIM_BITMAP;
mii.hbmpItem = NULL; mii.hbmpItem = NULL;
ok( GetMenuItemInfoA( hsysmenu, SC_CLOSE, FALSE, &mii), "GetMenuItemInfoA failed gle=%d\n", GetLastError()); got = GetMenuItemInfoA( hsysmenu, SC_CLOSE, FALSE, &mii);
ok( got, "GetMenuItemInfoA failed gle=%d\n", GetLastError());
ok( HBMMENU_POPUP_CLOSE == mii.hbmpItem, "Item info did not get the right hbitmap: got %p expected %p\n", ok( HBMMENU_POPUP_CLOSE == mii.hbmpItem, "Item info did not get the right hbitmap: got %p expected %p\n",
mii.hbmpItem, HBMMENU_POPUP_CLOSE); mii.hbmpItem, HBMMENU_POPUP_CLOSE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment