From 0b811eeabf0a02cde3a1200f5af5f3c0f4d00a08 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 20 Jan 2015 23:56:46 +0100 Subject: [PATCH] user32/tests: Don't test function directly when reporting GetLastError(). --- dlls/user32/tests/msg.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index b243a74beff..66f054aa687 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -4533,6 +4533,7 @@ static void test_messages(void) MSG msg; LRESULT res; POINT pos; + BOOL ret; flush_sequence(); @@ -4819,7 +4820,8 @@ static void test_messages(void) flush_events(); flush_sequence(); - ok(DrawMenuBar(hwnd), "DrawMenuBar failed: %d\n", GetLastError()); + ret = DrawMenuBar(hwnd); + ok(ret, "DrawMenuBar failed: %d\n", GetLastError()); flush_events(); ok_sequence(WmDrawMenuBarSeq, "DrawMenuBar", FALSE); ok(SetCursorPos(pos.x, pos.y), "SetCursorPos failed\n"); @@ -4831,7 +4833,8 @@ static void test_messages(void) ok(hwnd != 0, "Failed to create custom dialog window\n"); flush_events(); flush_sequence(); - ok(DrawMenuBar(hwnd), "DrawMenuBar failed: %d\n", GetLastError()); + ret = DrawMenuBar(hwnd); + ok(ret, "DrawMenuBar failed: %d\n", GetLastError()); flush_events(); ok_sequence(WmEmptySeq, "DrawMenuBar for a child window", FALSE); -- 2.11.4.GIT